listen method
Listens to this InheritedWidget to get notified when it's updated.
Implementation
StreamSubscription<void> listen(final void Function() onUpdate) =>
_updateStreamController.stream.listen((final event) => onUpdate());
Listens to this InheritedWidget to get notified when it's updated.
StreamSubscription<void> listen(final void Function() onUpdate) =>
_updateStreamController.stream.listen((final event) => onUpdate());