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