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