whereScribbleEnabled method

  1. @useResult
WidgetSelector<TextField> whereScribbleEnabled(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all TextField where scribbleEnabled matches the condition.

Example usage:

spot<TextField>().whereScribbleEnabled((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<TextField> whereScribbleEnabled(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('scribbleEnabled', match);
}