RouteTreeNodeMatch.fromMatch constructor

RouteTreeNodeMatch.fromMatch(
  1. RouteTreeNodeMatch? match,
  2. RouteTreeNode? node
)

来自匹配

Implementation

RouteTreeNodeMatch.fromMatch(RouteTreeNodeMatch? match, this.node) {
  parameters = <String, List<String>>{};
  if (match != null) {
    parameters.addAll(match.parameters);
  }
}