whereMinLines method

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

Example usage:

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

Implementation

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