hasValueWhere method

Expects that value of LinearProgressIndicator matches the condition in match.

Example usage:

spot<LinearProgressIndicator>().existsOnce().hasValueWhere((it) => it.isGreaterThan(10.5));

Implementation

WidgetMatcher<LinearProgressIndicator> hasValueWhere(
    MatchProp<double> match) {
  return hasDiagnosticProp<double>('value', match);
}