hasDecreasedValueWhere method

WidgetMatcher<Semantics> hasDecreasedValueWhere(
  1. MatchProp<String> match
)

Expects that decreasedValue of Semantics matches the condition in match.

Example usage:

spot<Semantics>().existsOnce().hasDecreasedValueWhere((it) => it.equals('foo'));

Implementation

WidgetMatcher<Semantics> hasDecreasedValueWhere(MatchProp<String> match) {
  return hasDiagnosticProp<String>('decreasedValue', match);
}