pop method
void
pop()
Implementation
void pop() {
if (_history.length > 1) {
_history.remove(_history.last);
final path = _history.last;
_controller.sink.add(path);
window.history.pushState({}.toJSBox, '', path);
}
}