hasSecondaryTrackValueWhere method

WidgetMatcher<Slider> hasSecondaryTrackValueWhere(
  1. MatchProp<double> match
)

Expects that secondaryTrackValue of Slider matches the condition in match.

Example usage:

spot<Slider>().existsOnce().hasSecondaryTrackValueWhere((it) => it.isGreaterThan(10.5));

Implementation

WidgetMatcher<Slider> hasSecondaryTrackValueWhere(MatchProp<double> match) {
  return hasDiagnosticProp<double>('secondaryTrackValue', match);
}