isSyneriseNotification method
Implementation
Future<bool> isSyneriseNotification(Map notification) async {
return await SyneriseInvocation(backgroundMethodChannel)
.invokeSDKMethod<bool>('Notifications/isSyneriseNotification',
parameters: {'notification': notification});
}