PhoneEditGroupCallParticipant constructor

const PhoneEditGroupCallParticipant({
  1. required InputGroupCallBase call,
  2. required InputPeerBase participant,
  3. bool? muted,
  4. int? volume,
  5. bool? raiseHand,
  6. bool? videoStopped,
  7. bool? videoPaused,
  8. bool? presentationPaused,
})

Phone Edit Group Call Participant constructor.

Implementation

const PhoneEditGroupCallParticipant({
  required this.call,
  required this.participant,
  this.muted,
  this.volume,
  this.raiseHand,
  this.videoStopped,
  this.videoPaused,
  this.presentationPaused,
}) : super._();