LoadGroupCallParticipants constructor

const LoadGroupCallParticipants({
  1. required int groupCallId,
  2. required int limit,
})

Loads more participants of a group call. The loaded participants will be received through updates. Use the field groupCall.loaded_all_participants to check whether all participants have already been loaded

Implementation

const LoadGroupCallParticipants({
  required this.groupCallId,
  required this.limit,
});