EventBus constructor

EventBus({
  1. bool sync = false,
})

Implementation

EventBus({bool sync = false})
    : _streamController = StreamController.broadcast(sync: sync);