whereAutofillHints method

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

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

Example usage:

spot<EditableText>().whereAutofillHints((it) => it.equals(['foo', 'bar'])).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereAutofillHints(
    MatchProp<Iterable<String>> match) {
  return withDiagnosticProp<Iterable<String>>('autofillHints', match);
}