InheritedNotifierElement<T> constructor

InheritedNotifierElement<T>(
  1. InheritedStreamer<T> widget
)

Implementation

InheritedNotifierElement(InheritedStreamer<T> widget) : super(widget) {
  _subscription = widget.stream.listen(_handleUpdate);
}