hasAlwaysIncludeSemanticsWhere method

WidgetMatcher<Opacity> hasAlwaysIncludeSemanticsWhere(
  1. MatchProp<bool> match
)

Expects that alwaysIncludeSemantics of Opacity matches the condition in match.

Example usage:

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

Implementation

WidgetMatcher<Opacity> hasAlwaysIncludeSemanticsWhere(MatchProp<bool> match) {
  return hasDiagnosticProp<bool>('alwaysIncludeSemantics', match);
}