liveRegion property Null safety
If non-null, sets the SemanticsConfiguration.liveRegion semantic to the given value.
Implementation
bool? get liveRegion => _liveRegion;
Implementation
set liveRegion(bool? value) {
if (_liveRegion == value)
return;
_liveRegion = value;
markNeedsSemanticsUpdate();
}