flutter_stream_listener library
Classes
- 
  StreamListener<T> 
- 
  A Widgetwhich manages aSubscriptionto a Stream and exposes callbacks: onData, onError, and onDone.
Typedefs
- 
    StreamOnDataListener<T> = void Function(T data) 
- 
    Signature for the onDatacallback.
- StreamOnDoneListener = void Function()
- 
    Signature for the onDonecallback.
- StreamOnErrorListener = void Function(dynamic error, StackTrace stackTrace)
- 
    Signature for the onErrorcallback.