whereTextInputAction method

  1. @useResult
WidgetSelector<TextField> whereTextInputAction(
  1. MatchProp<TextInputAction> match
)

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

Example usage:

spot<TextField>().whereTextInputAction((it) => it.equals(TextInputAction.values.first)).existsOnce();

Implementation

@useResult
WidgetSelector<TextField> whereTextInputAction(
    MatchProp<TextInputAction> match) {
  return withDiagnosticProp<TextInputAction>('textInputAction', match);
}