whereCursorHeight method

  1. @useResult
WidgetSelector<TextField> whereCursorHeight(
  1. MatchProp<double> match
)

Creates a WidgetSelector that finds all TextField where cursorHeight matches the condition.

Example usage:

spot<TextField>().whereCursorHeight((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<TextField> whereCursorHeight(MatchProp<double> match) {
  return withDiagnosticProp<double>('cursorHeight', match);
}