whereFontLetterSpacing method

  1. @useResult
WidgetSelector<AnyText> whereFontLetterSpacing(
  1. MatchProp<double> match
)

Creates a WidgetSelector that finds all AnyText where fontLetterSpacing matches the condition.

Example usage:

spot<AnyText>().whereFontLetterSpacing((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<AnyText> whereFontLetterSpacing(MatchProp<double> match) {
  return withDiagnosticProp<double>('font_letterSpacing', match);
}