whereEnableIMEPersonalizedLearning method

  1. @useResult
WidgetSelector<EditableText> whereEnableIMEPersonalizedLearning(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all EditableText where enableIMEPersonalizedLearning matches the condition.

Example usage:

spot<EditableText>().whereEnableIMEPersonalizedLearning((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereEnableIMEPersonalizedLearning(
    MatchProp<bool> match) {
  return withDiagnosticProp<bool>('enableIMEPersonalizedLearning', match);
}