removeCustomValue method

  1. @override
dynamic removeCustomValue(
  1. String messageId,
  2. String key
)
override

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;
  }
}