isSyneriseSimplePush method

Future<bool> isSyneriseSimplePush(
  1. Map notification
)

The function checks if a given notification is a Synerise Simple Push notification.

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

Implementation

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