handleNotification method

Future<bool> handleNotification(
  1. Map notification
)

Implementation

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