DataChannelInit constructor

const DataChannelInit({
  1. bool ordered = true,
  2. int? maxPacketLifeTime,
  3. int? maxRetransmits,
})

Implementation

const DataChannelInit({
  this.ordered = true,
  this.maxPacketLifeTime,
  this.maxRetransmits,
});