hasAttributedIncreasedValueWhere method

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

Expects that attributedIncreasedValue of Semantics matches the condition in match.

Example usage:

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

Implementation

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