deleteAllMessages method
Implementation
@override
deleteAllMessages() async {
try {
await mirrorFlyMethodChannel.invokeMethod('deleteAllMessages');
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}