pushState method

void pushState(
  1. String name
)

Put a copy of the current state into the stack

Implementation

void pushState(String name) {
  store.pushState(name);
}