StorageEvent constructor

StorageEvent(
  1. String type, {
  2. String? key,
  3. String? newValue,
  4. String? oldValue,
  5. Storage? storageArea,
  6. String? url,
  7. bool canBubble = false,
  8. bool cancelable = false,
})

Implementation

StorageEvent(
  super.type, {
  this.key,
  this.newValue,
  this.oldValue,
  this.storageArea,
  this.url,
  super.canBubble = false,
  bool super.cancelable = false,
}) : super.internal();