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