whereFamilyFallback method

  1. @useResult
WidgetSelector<EditableText> whereFamilyFallback(
  1. MatchProp<String> match
)

Creates a WidgetSelector that finds all EditableText where familyFallback matches the condition.

Example usage:

spot<EditableText>().whereFamilyFallback((it) => it.equals('foo')).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereFamilyFallback(MatchProp<String> match) {
  return withDiagnosticProp<String>('familyFallback', match);
}