whereSpellCheckConfiguration method

  1. @useResult
WidgetSelector<EditableText> whereSpellCheckConfiguration(
  1. MatchProp<SpellCheckConfiguration> match
)

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

Example usage:

spot<EditableText>().whereSpellCheckConfiguration((it) => it.equals(SpellCheckConfiguration())).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereSpellCheckConfiguration(
    MatchProp<SpellCheckConfiguration> match) {
  return withDiagnosticProp<SpellCheckConfiguration>(
      'spellCheckConfiguration', match);
}