whereDecreasedValue method

  1. @useResult
WidgetSelector<Semantics> whereDecreasedValue(
  1. MatchProp<String> match
)

Creates a WidgetSelector that finds all Semantics where decreasedValue matches the condition.

Example usage:

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

Implementation

@useResult
WidgetSelector<Semantics> whereDecreasedValue(MatchProp<String> match) {
  return withDiagnosticProp<String>('decreasedValue', match);
}