BehaviourEventController<T> constructor

BehaviourEventController<T>({
  1. T? lastEvent,
})

Implementation

BehaviourEventController({T? lastEvent}) {
  _controller = StreamController(onListen: _onListen);
  _lastEvent = lastEvent;
}