getCustomValue method
Implementation
@override
Future<String?> getCustomValue(String messageId, String key) async {
String? res;
try {
res = await mirrorFlyMethodChannel.invokeMethod<String>('getCustomValue', {"message_id": messageId, "key": key});
return res;
} on PlatformException catch (e) {
LogMessage.d("Platform Exception =", " $e");
rethrow;
} on Exception catch (error) {
LogMessage.d("Exception ", " $error");
rethrow;
}
}