| Index: client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
|
| diff --git a/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart b/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
|
| index a344aeb8f1dfa66ed574a71a454092013a9a7706..73134b8a39261ce6c5a5b2873991c6c9cb1f7c92 100644
|
| --- a/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
|
| +++ b/client/html/generated/src/wrapping/_HistoryWrappingImplementation.dart
|
| @@ -24,7 +24,7 @@ class HistoryWrappingImplementation extends DOMWrapperBase implements History {
|
| return;
|
| }
|
|
|
| - void pushState(Object data, String title, [String url = null]) {
|
| + void pushState(Object data, String title, [String url]) {
|
| if (url === null) {
|
| _ptr.pushState(LevelDom.unwrapMaybePrimitive(data), title);
|
| return;
|
| @@ -34,7 +34,7 @@ class HistoryWrappingImplementation extends DOMWrapperBase implements History {
|
| }
|
| }
|
|
|
| - void replaceState(Object data, String title, [String url = null]) {
|
| + void replaceState(Object data, String title, [String url]) {
|
| if (url === null) {
|
| _ptr.replaceState(LevelDom.unwrapMaybePrimitive(data), title);
|
| return;
|
|
|