hasSmartQuotesTypeWhere method

WidgetMatcher<TextField> hasSmartQuotesTypeWhere(
  1. MatchProp<SmartQuotesType> match
)

Expects that smartQuotesType of TextField matches the condition in match.

Example usage:

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

Implementation

WidgetMatcher<TextField> hasSmartQuotesTypeWhere(
    MatchProp<SmartQuotesType> match) {
  return hasDiagnosticProp<SmartQuotesType>('smartQuotesType', match);
}