whereRunSpacing method

  1. @useResult
WidgetSelector<Wrap> whereRunSpacing(
  1. MatchProp<double> match
)

Creates a WidgetSelector that finds all Wrap where runSpacing matches the condition.

Example usage:

spot<Wrap>().whereRunSpacing((it) => it.isGreaterThan(10.5)).existsOnce();

Implementation

@useResult
WidgetSelector<Wrap> whereRunSpacing(MatchProp<double> match) {
  return withDiagnosticProp<double>('runSpacing', match);
}