isSyneriseNotification method
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);
}