hasValueWhere method

Expects that value of CircularProgressIndicator matches the condition in match.

Example usage:

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

Implementation

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