hasCursorOpacityAnimatesWhere method

WidgetMatcher<TextField> hasCursorOpacityAnimatesWhere(
  1. MatchProp<bool> match
)

Expects that cursorOpacityAnimates of TextField matches the condition in match.

Example usage:

spot<TextField>().existsOnce().hasCursorOpacityAnimatesWhere((it) => it.isTrue());

Implementation

WidgetMatcher<TextField> hasCursorOpacityAnimatesWhere(
    MatchProp<bool> match) {
  return hasDiagnosticProp<bool>('cursorOpacityAnimates', match);
}