getParticipantsWithName method
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 ?? [];
}