whereWordSpacing method

  1. @useResult
WidgetSelector<EditableText> whereWordSpacing(
  1. MatchProp<double> match
)

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

Example usage:

spot<EditableText>().whereWordSpacing((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<EditableText> whereWordSpacing(MatchProp<double> match) {
  return withDiagnosticProp<double>('wordSpacing', match);
}