whereSmartQuotesType method

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

Example usage:

spot<EditableText>().whereSmartQuotesType((it) => it.equals(SmartQuotesType.values.first)).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereSmartQuotesType(
    MatchProp<SmartQuotesType> match) {
  return withDiagnosticProp<SmartQuotesType>('smartQuotesType', match);
}