isSyneriseSimplePush method

Future<bool> isSyneriseSimplePush(
  1. Map notification
)

Implementation

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