WrappedMediaStream constructor

WrappedMediaStream({
  1. MediaStream? stream,
  2. RTCPeerConnection? pc,
  3. required Room room,
  4. required CallParticipant participant,
  5. required String purpose,
  6. required Client client,
  7. required bool audioMuted,
  8. required bool videoMuted,
  9. required bool isGroupCall,
  10. required VoIP voip,
})

Implementation

WrappedMediaStream({
  this.stream,
  this.pc,
  required this.room,
  required this.participant,
  required this.purpose,
  required this.client,
  required this.audioMuted,
  required this.videoMuted,
  required this.isGroupCall,
  required this.voip,
});