findByDescendant method
Finds widgets that are descendants of the of
parameter and that match the matching
parameter.
Implementation
@override
Finder findByDescendant(
Finder of,
Finder matching, {
bool matchRoot = false,
bool firstMatchOnly = false,
}) {
return find.descendant(
of: of,
matching: matching,
matchRoot: matchRoot,
);
}