initStorageEvent method

void initStorageEvent(
  1. String type, [
  2. bool? bubbles = false,
  3. bool? cancelable = false,
  4. String? key,
  5. String? oldValue,
  6. String? newValue,
  7. String? url = '',
  8. Storage? storageArea,
])

Implementation

void initStorageEvent(String type,
        [bool? bubbles = false,
        bool? cancelable = false,
        String? key,
        String? oldValue,
        String? newValue,
        String? url = '',
        Storage? storageArea]) =>
    js_util.callMethod(this, 'initStorageEvent', [
      type,
      bubbles,
      cancelable,
      key,
      oldValue,
      newValue,
      url,
      storageArea
    ]);