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

Static Properties

instanceRuntimeType Type

read-only

Constructors

ObjectStore.internal_()

Properties

autoIncrement bool

read-only
hashCode int

read-only, inherited
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.

inherited

Methods

add(value, [key]) Future

clear() Future

count([key_OR_range]) Future<int>

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

delete(key_OR_keyRange) Future

deleteIndex(String name) → void

getAll(Object range, [int maxCount]) Request

getAllKeys(Object range, [int maxCount]) Request

getObject(key) Future

index(String name) Index

noSuchMethod(Invocation invocation) → dynamic

Invoked when a non-existent method or property is accessed.

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]) Future

toString() String

Returns the result of the JavaScript objects toString method.

inherited