StorageEventInit constructor
StorageEventInit({})
Implementation
factory StorageEventInit(
{String? key,
String? oldValue,
String? newValue,
String? url,
Storage? storageArea}) =>
StorageEventInit._(
key: key ?? undefined,
oldValue: oldValue ?? undefined,
newValue: newValue ?? undefined,
url: url ?? '',
storageArea: storageArea ?? undefined);