hasHintOverridesWhere method

WidgetMatcher<Semantics> hasHintOverridesWhere(
  1. MatchProp<SemanticsHintOverrides> match
)

Expects that hintOverrides of Semantics matches the condition in match.

Example usage:

spot<Semantics>().existsOnce().hasHintOverridesWhere((it) => it.equals(SemanticsHintOverrides()));

Implementation

WidgetMatcher<Semantics> hasHintOverridesWhere(
    MatchProp<SemanticsHintOverrides> match) {
  return hasDiagnosticProp<SemanticsHintOverrides>('hintOverrides', match);
}