SourceNode<T> constructor

SourceNode<T>({
  1. bool pauseable = true,
  2. String? name,
})

Implementation

SourceNode({this.pauseable = true, String? name}) : super(name: name) {
  this.controller = StreamController<T>.broadcast();
}