withFontWordSpacing method

  1. @useResult
WidgetSelector<AnyText> withFontWordSpacing(
  1. double? value
)

Creates a WidgetSelector that finds all AnyText where fontWordSpacing equals (==) value.

Example usage:

spot<AnyText>().withFontWordSpacing(10.5).existsOnce();

Implementation

@useResult
WidgetSelector<AnyText> withFontWordSpacing(double? value) {
  return withDiagnosticProp<double>('font_wordSpacing',
      (it) => value == null ? it.isNull() : it.equals(value));
}