whereAttributedHint method

  1. @useResult
WidgetSelector<Semantics> whereAttributedHint(
  1. MatchProp<String> match
)

Creates a WidgetSelector that finds all Semantics where attributedHint matches the condition.

Example usage:

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

Implementation

@useResult
WidgetSelector<Semantics> whereAttributedHint(MatchProp<String> match) {
  return withDiagnosticProp<String>('attributedHint', match);
}