withEnableIMEPersonalizedLearning method

  1. @useResult
WidgetSelector<EditableText> withEnableIMEPersonalizedLearning(
  1. bool? value
)

Creates a WidgetSelector that finds all EditableText where enableIMEPersonalizedLearning equals (==) value.

Example usage:

spot<EditableText>().withEnableIMEPersonalizedLearning(true).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> withEnableIMEPersonalizedLearning(bool? value) {
  return withDiagnosticProp<bool>('enableIMEPersonalizedLearning',
      (it) => value == null ? it.isNull() : it.equals(value));
}