whereMinLines method

  1. @useResult
WidgetSelector<EditableText> whereMinLines(
  1. MatchProp<int> match
)

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

Example usage:

spot<EditableText>().whereMinLines((it) => it.isGreaterThan(10)).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereMinLines(MatchProp<int> match) {
  return withDiagnosticProp<int>('minLines', match);
}