historyPushState static method

void historyPushState(
  1. Object? state,
  2. String title,
  3. String url
)

Pushes a new entry onto the browser history stack. No-op on non-web.

Implementation

static void historyPushState(Object? state, String title, String url) =>
    impl.historyPushState(state, title, url);