hasMixedWhere method

WidgetMatcher<Semantics> hasMixedWhere(
  1. MatchProp<bool> match
)

Expects that mixed of Semantics matches the condition in match.

Example usage:

spot<Semantics>().existsOnce().hasMixedWhere((it) => it.isTrue());

Implementation

WidgetMatcher<Semantics> hasMixedWhere(MatchProp<bool> match) {
  return hasDiagnosticProp<bool>('mixed', match);
}