Descendant constructor

const Descendant(
  1. {required SerializableFinder of,
  2. required SerializableFinder matching,
  3. bool matchRoot = false,
  4. bool firstMatchOnly = false}
)

Creates a descendant finder.

Implementation

const Descendant({
  required this.of,
  required this.matching,
  this.matchRoot = false,
  this.firstMatchOnly = false,
});