Transport constructor

Transport({
  1. required Protocol protocol,
  2. List<String>? cidrAllowList,
  3. int? maxBitrate,
  4. int? maxLatency,
  5. String? remoteId,
  6. int? smoothingLatency,
  7. String? streamId,
})

Implementation

Transport({
  required this.protocol,
  this.cidrAllowList,
  this.maxBitrate,
  this.maxLatency,
  this.remoteId,
  this.smoothingLatency,
  this.streamId,
});