whereHeight method

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

Example usage:

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

Implementation

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