hasMixed method

WidgetMatcher<Semantics> hasMixed(
  1. bool? value
)

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

Example usage:

spot<Semantics>().existsOnce().hasMixed(true);

Implementation

WidgetMatcher<Semantics> hasMixed(bool? value) {
  return hasDiagnosticProp<bool>(
      'mixed', (it) => value == null ? it.isNull() : it.equals(value));
}