whereSmartQuotesType method

  1. @useResult
WidgetSelector<TextField> whereSmartQuotesType(
  1. MatchProp<SmartQuotesType> match
)

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

Example usage:

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

Implementation

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