getParticipants method

  1. @override
Future<List?> getParticipants({
  1. required String conversationId,
})
override

Get participants from the specific conversation #

Implementation

@override
Future<List?> getParticipants({required String conversationId}) async {
  final List? participantsList = await methodChannel
      .invokeMethod('getParticipants', {"conversationId": conversationId});
  return participantsList ?? [];
}