semanticsEnabledTestValue property

void semanticsEnabledTestValue=(bool semanticsEnabledTestValue)

Hides the real semantics enabled and reports the given semanticsEnabledTestValue instead.

Implementation

set semanticsEnabledTestValue(bool semanticsEnabledTestValue) { // ignore: avoid_setters_without_getters
  _semanticsEnabledTestValue = semanticsEnabledTestValue;
  onSemanticsEnabledChanged?.call();
}