Not documented.

Inheritance
Implemented by
Annotations
  • DocsEditable()
  • DomName('IDBRequest')
  • Unstable()

Constants

EventStreamProvider<Event> errorEvent = const EventStreamProvider<Event>('error')
const

Static factory designed to expose error events to event handlers that are not necessarily instances of Request.

EventStreamProvider<Event> successEvent = const EventStreamProvider<Event>('success')
const

Static factory designed to expose success events to event handlers that are not necessarily instances of Request.

Properties

error DomError
read-only

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.

onError Stream<Event>
read-only

Stream of error events handled by this Request.

onSuccess Stream<Event>
read-only

Stream of success events handled by this Request.

readyState String
read-only

result Object
read-only

source Object
read-only

transaction Transaction
read-only

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