whereExcludeFromSemantics method

  1. @useResult
WidgetSelector<Image> whereExcludeFromSemantics(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all Image where excludeFromSemantics matches the condition.

Example usage:

spot<Image>().whereExcludeFromSemantics((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<Image> whereExcludeFromSemantics(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('this.excludeFromSemantics', match);
}