report method
Implementation
@override
void report(FilterSettings filterSettings) {
_result!.report(spacerCount: _parentCount);
if (children.isNotEmpty && skip == false) {
for (Contextual child in children) {
if (_filterAppliesToChildren) {
if (child._shouldRunWithFilter(filterSettings)) {
child.report(filterSettings);
}
} else {
child.report(filterSettings);
}
}
}
}