restore method

void restore(
  1. String location, {
  2. required Object encodedMatchList,
})

Restores the current route matches with the encodedMatchList.

Implementation

void restore(String location, {required Object encodedMatchList}) {
  _setValue(
    location,
    encodedMatchList,
  );
}