JoinGroupCall constructor

const JoinGroupCall(
  1. {required int groupCallId,
  2. MessageSender? participantId,
  3. required int audioSourceId,
  4. required String payload,
  5. required bool isMuted,
  6. required bool isMyVideoEnabled,
  7. required String inviteHash}
)

Joins an active group call. Returns join response payload for tgcalls

Implementation

const JoinGroupCall({
  required this.groupCallId,
  this.participantId,
  required this.audioSourceId,
  required this.payload,
  required this.isMuted,
  required this.isMyVideoEnabled,
  required this.inviteHash,
});