hasMinLinesWhere method

WidgetMatcher<TextField> hasMinLinesWhere(
  1. MatchProp<int> match
)

Expects that minLines of TextField matches the condition in match.

Example usage:

spot<TextField>().existsOnce().hasMinLinesWhere((it) => it.isGreaterThan(10));

Implementation

WidgetMatcher<TextField> hasMinLinesWhere(MatchProp<int> match) {
  return hasDiagnosticProp<int>('minLines', match);
}