Not documented.

Inheritance
Annotations
  • DocsEditable()
  • DomName('IDBOpenDBRequest')
  • Unstable()

Constants

EventStreamProvider<Event> blockedEvent = const EventStreamProvider<Event>('blocked')
const

Static factory designed to expose blocked events to event handlers that are not necessarily instances of OpenDBRequest.

EventStreamProvider<VersionChangeEvent> upgradeNeededEvent = const EventStreamProvider<VersionChangeEvent>('upgradeneeded')
const

Static factory designed to expose upgradeneeded events to event handlers that are not necessarily instances of OpenDBRequest.

Properties

error DomError
read-only, inherited

on Events
read-only, inherited

This is an ease-of-use accessor for event streams which should only be used when an explicit accessor is not available.

onBlocked Stream<Event>
read-only

Stream of blocked events handled by this OpenDBRequest.

onError Stream<Event>
read-only, inherited

Stream of error events handled by this Request.

onSuccess Stream<Event>
read-only, inherited

Stream of success events handled by this Request.

onUpgradeNeeded Stream<VersionChangeEvent>
read-only

Stream of upgradeneeded events handled by this OpenDBRequest.

readyState String
read-only, inherited

result Object
read-only, inherited

source Object
read-only, inherited

transaction Transaction
read-only, inherited

Methods

addEventListener(String type, dynamic listener(Event event), [bool useCapture]) → void
inherited

dispatchEvent(Event event) → bool
inherited

removeEventListener(String type, dynamic listener(Event event), [bool useCapture]) → void
inherited