whereCursorOpacityAnimates method

  1. @useResult
WidgetSelector<TextField> whereCursorOpacityAnimates(
  1. MatchProp<bool> match
)

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

Example usage:

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

Implementation

@useResult
WidgetSelector<TextField> whereCursorOpacityAnimates(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('cursorOpacityAnimates', match);
}