hasSmartDashesTypeWhere method

WidgetMatcher<TextField> hasSmartDashesTypeWhere(
  1. MatchProp<SmartDashesType> match
)

Expects that smartDashesType of TextField matches the condition in match.

Example usage:

spot<TextField>().existsOnce().hasSmartDashesTypeWhere((it) => it.equals(SmartDashesType.values.first));

Implementation

WidgetMatcher<TextField> hasSmartDashesTypeWhere(
    MatchProp<SmartDashesType> match) {
  return hasDiagnosticProp<SmartDashesType>('smartDashesType', match);
}