initGroupParticipantController method

Future<void> initGroupParticipantController({
  1. required BuildContext buildContext,
  2. required String groupId,
  3. required String callType,
})

Implementation

Future<void> initGroupParticipantController(
    {required BuildContext buildContext,
    required String groupId,
    required String callType}) async {
  context = buildContext;
  getMaxCallUsersCount = (await Mirrorfly.getMaxCallUsersCount()) ?? 8;
  this.groupId(groupId);
  this.callType(callType);
  getGroupMembers();
}