whereScribbleEnabled method

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

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

Example usage:

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

Implementation

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