SctpStreamParameters constructor

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

Implementation

SctpStreamParameters({
  required this.streamId,
  this.ordered,
  this.maxPacketLifeTime,
  this.maxRetransmits,
  this.priority,
  this.label,
  this.protocol,
});