RouteConfig typedef

RouteConfig = ({String? branchScreenName, Object navigationType, List<String> requiredPriorNavigation})

Implementation

typedef RouteConfig = ({
  List<String> requiredPriorNavigation,
  Object navigationType,
  // The active branch's screen name, used to serialize the active branch in
  // the web URL (`/<branchScreen>/<topScreen>`). `null` for single-stack
  // (non-tabbed) controllers or parsed deep-links that don't carry branch info.
  String? branchScreenName,
});