whereAlwaysIncludeSemantics method

  1. @useResult
WidgetSelector<Opacity> whereAlwaysIncludeSemantics(
  1. MatchProp<bool> match
)

Creates a WidgetSelector that finds all Opacity where alwaysIncludeSemantics matches the condition.

Example usage:

spot<Opacity>().whereAlwaysIncludeSemantics((it) => it.isTrue()).existsOnce();

Implementation

@useResult
WidgetSelector<Opacity> whereAlwaysIncludeSemantics(MatchProp<bool> match) {
  return withDiagnosticProp<bool>('alwaysIncludeSemantics', match);
}