whereSize method

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

Example usage:

spot<EditableText>().whereSize((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereSize(MatchProp<double> match) {
  return withDiagnosticProp<double>('size', match);
}