On this page
StorageEvent factory constructor
StorageEvent(Source
factory StorageEvent(String type,
{bool canBubble: false,
bool cancelable: false,
String key,
String oldValue,
String newValue,
String url,
Storage storageArea}) {
StorageEvent e = document._createEvent("StorageEvent");
e._initStorageEvent(
type, canBubble, cancelable, key, oldValue, newValue, url, storageArea);
return e;
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-html/StorageEvent/StorageEvent.html