ZapClient constructor

ZapClient(
  1. ChannelSession channelSession, {
  2. required EventBook eventBook,
  3. bool autoStart = true,
})

Implementation

ZapClient(super.channelSession, {required EventBook eventBook, this.autoStart = true})
    : _eventBook = eventBook {
      if (autoStart) start();
    }