shouldHandleInitialDeeplink method

bool shouldHandleInitialDeeplink()

ATTENTION: getInitialLink/getInitialUri should be handled ONLY ONCE in your app's lifetime, since it is not meant to change throughout your app's life.

Implementation

bool shouldHandleInitialDeeplink() {
  if (_initialDeeplinkIsHandled) {
    return false;
  } else {
    _initialDeeplinkIsHandled = true;
    return true;
  }
}