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