Stream constructor

Stream({
  1. String? id,
  2. required String producerId,
  3. bool? muted,
  4. MediaStream? stream,
  5. Socket? socket_,
  6. String? name,
  7. String? audioID,
  8. String? videoID,
})

Implementation

Stream({
  this.id,
  required this.producerId,
  this.muted,
  this.stream,
  this.socket_,
  this.name,
  this.audioID,
  this.videoID,
});