push method

void push(
  1. R route
)

Implementation

void push(R route) {
  _stack.add(route);
  _changes.add(null);
}