ProducerInfo constructor

ProducerInfo({
  1. required String id,
  2. required StreamType type,
  3. required MediaStreamTrack track,
  4. required Producer producer,
  5. required MediaStream stream,
  6. bool paused = false,
  7. Map<String, dynamic>? stoppedTrackSettings,
})

Implementation

ProducerInfo({
  required this.id,
  required this.type,
  required this.track,
  required this.producer,
  required this.stream,
  this.paused = false,
  this.stoppedTrackSettings,
});