hasCursorRadiusWhere method

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

Expects that cursorRadius of SelectableText matches the condition in match.

Example usage:

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

Implementation

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