restore method

void restore(
  1. RouteMatchList matchList
)

Restore the RouteMatchList

Implementation

void restore(RouteMatchList matchList) {
  log.info('restoring ${matchList.uri}');
  routeInformationProvider.restore(
    matchList.uri.toString(),
    encodedMatchList: RouteMatchListCodec(configuration).encode(matchList),
  );
}