whereHeight method

  1. @useResult
WidgetSelector<Image> whereHeight(
  1. MatchProp<double> match
)

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

Example usage:

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

Implementation

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