VoiceParticipant constructor

const VoiceParticipant({
  1. required String nick,
  2. required VoiceRole role,
  3. required OnOff mic,
  4. required OnOff video,
  5. required OnOff speaking,
  6. required OnOff deaf,
  7. required OnOff screen,
  8. required OnOff hand,
})

Implementation

const VoiceParticipant({
  required this.nick,
  required this.role,
  required this.mic,
  required this.video,
  required this.speaking,
  required this.deaf,
  required this.screen,
  required this.hand,
});