hasIncreasedValue method

WidgetMatcher<Semantics> hasIncreasedValue(
  1. String? value
)

Expects that increasedValue of Semantics equals (==) value.

Example usage:

spot<Semantics>().existsOnce().hasIncreasedValue('foo');

Implementation

WidgetMatcher<Semantics> hasIncreasedValue(String? value) {
  return hasDiagnosticProp<String>('increasedValue',
      (it) => value == null ? it.isNull() : it.equals(value));
}