isNotificationEncrypted method

Future<bool> isNotificationEncrypted(
  1. Map notification
)

The function checks if a notification is encrypted.

Args: notification (Map): A map containing the notification data.

Implementation

Future<bool> isNotificationEncrypted(Map notification) async {
  return _methods.isNotificationEncrypted(notification);
}