hasAttributedHintWhere method

WidgetMatcher<Semantics> hasAttributedHintWhere(
  1. MatchProp<String> match
)

Expects that attributedHint of Semantics matches the condition in match.

Example usage:

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

Implementation

WidgetMatcher<Semantics> hasAttributedHintWhere(MatchProp<String> match) {
  return hasDiagnosticProp<String>('attributedHint', match);
}