decryptNotification method

Future<Map> decryptNotification(
  1. Map notification
)

Implementation

Future<Map> decryptNotification(Map notification) async {
  return await backgroundMethodChannel.invokeMethod(
      'Notifications/decryptNotification', {'notification': notification});
}