withAttributedIncreasedValue method

  1. @useResult
WidgetSelector<Semantics> withAttributedIncreasedValue(
  1. String? value
)

Creates a WidgetSelector that finds all Semantics where attributedIncreasedValue equals (==) value.

Example usage:

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

Implementation

@useResult
WidgetSelector<Semantics> withAttributedIncreasedValue(String? value) {
  return withDiagnosticProp<String>('attributedIncreasedValue',
      (it) => value == null ? it.isNull() : it.equals(value));
}