restore static method

RouteInformationState<void> restore({
  1. required RouteMatchList base,
  2. Object? extra,
})

Factory constructor for 'restore' navigation type.

Implementation

static RouteInformationState<void> restore({required RouteMatchList base, Object? extra}) =>
    RouteInformationState<void>(
      extra: extra ?? base.extra,
      baseRouteMatchList: base,
      type: NavigatingType.restore,
    );