hasAttributedDecreasedValueWhere method

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

Expects that attributedDecreasedValue of Semantics matches the condition in match.

Example usage:

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

Implementation

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