SendDataChannelArguments constructor

SendDataChannelArguments({
  1. bool? ordered,
  2. int? maxPacketLifeTime,
  3. int? maxRetransmits,
  4. Priority? priority,
  5. String? label,
  6. String? protocol,
})

Implementation

SendDataChannelArguments({
  this.ordered,
  this.maxPacketLifeTime,
  this.maxRetransmits,
  this.priority,
  this.label,
  this.protocol,
});