removeCustomValue method
Implementation
@override
removeCustomValue(String messageId, String key) async {
try {
await mirrorFlyMethodChannel.invokeMethod(
'removeCustomValue', {"message_id": messageId, "key": key});
} on PlatformException catch (e) {
debugPrint("Platform Exception ===> $e");
rethrow;
} on Exception catch (error) {
debugPrint("Exception ==> $error");
rethrow;
}
}