getConversations method
Get list of conversations for logged in user #
Implementation
@override
Future<List?> getConversations() async {
final List? conversationsList = await methodChannel.invokeMethod(
'getConversations');
return conversationsList ?? [];
}