Channel constructor

Channel({
  1. int localId = 0,
  2. int remoteId = 0,
  3. int windowC = 0,
  4. int windowS = 0,
  5. ChannelCallback cb,
  6. StringCallback error,
  7. VoidCallback connected,
  8. VoidCallback closed,
})

Implementation

Channel(
    {this.localId = 0,
    this.remoteId = 0,
    this.windowC = 0,
    this.windowS = 0,
    this.cb,
    this.error,
    this.connected,
    this.closed});