UpdateGroupCallParticipant constructor

const UpdateGroupCallParticipant({
  1. required int groupCallId,
  2. required GroupCallParticipant participant,
  3. dynamic extra,
  4. int? clientId,
})

Information about a group call participant was changed. The updates are sent only after the group call is received through getGroupCall and only if the call is joined or being joined

Implementation

const UpdateGroupCallParticipant({
  required this.groupCallId,
  required this.participant,
  this.extra,
  this.clientId,
});