InviteGroupCallParticipants constructor

const InviteGroupCallParticipants({
  1. required int groupCallId,
  2. required List<int> userIds,
})

Invites users to an active group call. Sends a service message of type messageInviteToGroupCall for video chats

Implementation

const InviteGroupCallParticipants({
  required this.groupCallId,
  required this.userIds,
});