Accessibility live region - Flutter

On Flutter, the liveRegion property can be used in Semantics to indicate a live region. By default, the live region is polite: it queues announcements.

Semantics(
  liveRegion: true,
  child: Text('Appt live region')
);