pushState method Null safety
override
Push a new history entry.
See: https://developer.mozilla.org/en-US/docs/Web/API/History/pushState
Implementation
@override
void pushState(Object? state, String title, String url) {
_platformLocation.pushState(state, title, prepareExternalUrl(url));
}