replace method

void replace(
  1. Page page
)

Replaces the top-most Page in the stack with the given page.

Implementation

void replace(Page page) {
  emit(
    [
      ...state.take(state.length - 1),
      page,
    ],
  );
}