addPushNotificationDeepLinkPath method

void addPushNotificationDeepLinkPath(
  1. List<String> deeplinkPath
)

Adds array of keys, which are used to compose key path to resolve deeplink from push notification payload.

Implementation

void addPushNotificationDeepLinkPath(List<String> deeplinkPath) {
  _methodChannel.invokeMethod(
      "addPushNotificationDeepLinkPath", deeplinkPath);
}