getOnlineParticipants method

Future<List<int?>> getOnlineParticipants(
  1. String id
)

Implementation

Future<List<int?>> getOnlineParticipants(String id) async {
  Object? object = await _conferenceModule.invokeMethod(
      GET_ONLINE_PARTICIPANTS_METHOD, id);

  List<int?> participants = List.castFrom(object as List<dynamic>);

  return participants;
}