findByAncestor method
SerializableFinder
findByAncestor(
- SerializableFinder of,
- SerializableFinder matching, {
- bool matchRoot = false,
- bool firstMatchOnly = false,
override
Implementation
@override
SerializableFinder findByAncestor(
SerializableFinder of,
SerializableFinder matching, {
bool matchRoot = false,
bool firstMatchOnly = false,
}) {
return find.ancestor(
of: of,
matching: matching,
matchRoot: matchRoot,
firstMatchOnly: firstMatchOnly,
);
}