whereFontFamilyFallback method

  1. @useResult
WidgetSelector<AnyText> whereFontFamilyFallback(
  1. MatchProp<String> match
)

Creates a WidgetSelector that finds all AnyText where fontFamilyFallback matches the condition.

Example usage:

spot<AnyText>().whereFontFamilyFallback((it) => it.equals('foo')).existsOnce();

Implementation

@useResult
WidgetSelector<AnyText> whereFontFamilyFallback(MatchProp<String> match) {
  return withDiagnosticProp<String>('font_familyFallback', match);
}