hasEnableIMEPersonalizedLearning method

WidgetMatcher<TextField> hasEnableIMEPersonalizedLearning(
  1. bool? value
)

Expects that enableIMEPersonalizedLearning of TextField equals (==) value.

Example usage:

spot<TextField>().existsOnce().hasEnableIMEPersonalizedLearning(true);

Implementation

WidgetMatcher<TextField> hasEnableIMEPersonalizedLearning(bool? value) {
  return hasDiagnosticProp<bool>('enableIMEPersonalizedLearning',
      (it) => value == null ? it.isNull() : it.equals(value));
}