whereSmartDashesType method

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

Example usage:

spot<EditableText>().whereSmartDashesType((it) => it.equals(SmartDashesType.values.first)).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereSmartDashesType(
    MatchProp<SmartDashesType> match) {
  return withDiagnosticProp<SmartDashesType>('smartDashesType', match);
}