hasRunSpacingWhere method

WidgetMatcher<Wrap> hasRunSpacingWhere(
  1. MatchProp<double> match
)

Expects that runSpacing of Wrap matches the condition in match.

Example usage:

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

Implementation

WidgetMatcher<Wrap> hasRunSpacingWhere(MatchProp<double> match) {
  return hasDiagnosticProp<double>('runSpacing', match);
}