ReevaluatableRouteMatch<T, R> constructor

ReevaluatableRouteMatch<T, R>({
  1. required AutoRoutePage<R> currentPage,
  2. required RouteMatch originalMatch,
})

Creates a new instance of ReevaluatableRouteMatch

Implementation

ReevaluatableRouteMatch({
  required this.currentPage,
  required this.originalMatch,
}) : super._internal(
        config: originalMatch._config,
        stringMatch: originalMatch.stringMatch,
        segments: originalMatch.segments,
        key: originalMatch.key,
        params: originalMatch.params,
        queryParams: originalMatch.queryParams,
        fragment: originalMatch.fragment,
        redirectedFrom: originalMatch.redirectedFrom,
        autoFilled: originalMatch.autoFilled,
        id: originalMatch.id,
        children: originalMatch.children,
        evaluatedGuards: originalMatch.evaluatedGuards,
        args: originalMatch.args,
      );