getMessageActions method
Implementation
@override
Future<dynamic> getMessageActions(List<String> messageidlist) async {
dynamic res;
try {
res = await mirrorFlyMethodChannel
.invokeMethod('getMessageActions', {"messageidlist": messageidlist});
return res;
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}