isSyneriseNotification method

Future<bool> isSyneriseNotification(
  1. Map notification
)

The function isSyneriseNotification checks if a given notification is a Synerise notification.

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

Implementation

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