hasEnableIMEPersonalizedLearningWhere method

WidgetMatcher<TextField> hasEnableIMEPersonalizedLearningWhere(
  1. MatchProp<bool> match
)

Expects that enableIMEPersonalizedLearning of TextField matches the condition in match.

Example usage:

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

Implementation

WidgetMatcher<TextField> hasEnableIMEPersonalizedLearningWhere(
    MatchProp<bool> match) {
  return hasDiagnosticProp<bool>('enableIMEPersonalizedLearning', match);
}