hasCursorRadiusWhere method

WidgetMatcher<TextField> hasCursorRadiusWhere(
  1. MatchProp<Radius> match
)

Expects that cursorRadius of TextField matches the condition in match.

Example usage:

spot<TextField>().existsOnce().hasCursorRadiusWhere((it) => it.equals(Radius.circular(10.0)));

Implementation

WidgetMatcher<TextField> hasCursorRadiusWhere(MatchProp<Radius> match) {
  return hasDiagnosticProp<Radius>('cursorRadius', match);
}