copyWith method
Implementation
RouteTreeResult copyWith({
GetPage? route,
MatchResult? matchResult,
}) {
return RouteTreeResult(
route: route ?? this.route,
matchResult: matchResult ?? this.matchResult,
);
}
RouteTreeResult copyWith({
GetPage? route,
MatchResult? matchResult,
}) {
return RouteTreeResult(
route: route ?? this.route,
matchResult: matchResult ?? this.matchResult,
);
}