getParticipantsWithName method

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

Get participants with name from the specific conversation #

Implementation

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