InheritedStreamer<T> constructor

const InheritedStreamer<T>(
  1. Stream<T> stream,
  2. Widget child, {
  3. Key? key,
})

Implementation

const InheritedStreamer(this.stream, Widget child, {Key? key})
    : super(key: key, child: child);