Not documented.

Inheritance
Annotations
  • DomName('IDBObjectStore')
  • Unstable()

Static Methods

internalCreateObjectStore() ObjectStore

Constructors

ObjectStore.internal_()

Properties

autoIncrement bool

read-only

The underlying JS DOM object.

read / write, inherited
hashCode int

read-only
indexNames List<String>

read-only
keyPath Object

read-only
name String

read-only
runtimeType Type

A representation of the runtime type of the object.

read-only, inherited
transaction Transaction

read-only

Operators

operator ==(other) bool

The equality operator.

Methods

add(value, [key])

clear()

count([key_OR_range]) Future<int>

createIndex(String name, keyPath, {bool unique, bool multiEntry}) Index

delete(key_OR_keyRange)

deleteIndex(String name) → void

getObject(key)

index(String name) Index

noSuchMethod(Invocation invocation) → dynamic

noSuchMethod is invoked when users invoke a non-existent method on an object. The name of the method and the arguments of the invocation are passed to noSuchMethod in an Invocation. If noSuchMethod returns a value, that value becomes the result of the original invocation.

inherited
openCursor({key, KeyRange range, String direction, bool autoAdvance}) Stream<CursorWithValue>

Creates a stream of cursors over the records in this object store.

openKeyCursor(Object range, [String direction]) Request

put(value, [key])

toString() String

Returns a string representation of this object.

inherited