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

Constructors

ObjectStore.internal_()

Properties

autoIncrement bool
@DocsEditable(), @DomName('IDBObjectStore.autoIncrement'), read-only
indexNames List<String>
@DocsEditable(), @DomName('IDBObjectStore.indexNames'), read-only
keyPath Object
@DocsEditable(), @DomName('IDBObjectStore.keyPath'), read-only
name String
@DocsEditable(), @DomName('IDBObjectStore.name'), read-only
transaction Transaction
@DocsEditable(), @DomName('IDBObjectStore.transaction'), read-only
hashCode int
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

add(value, [ key ]) Future
@DomName('IDBObjectStore.add')
clear() Future
@DomName('IDBObjectStore.clear')
count([key_OR_range ]) Future<int>
@DomName('IDBObjectStore.count')
createIndex(String name, keyPath, { bool unique, bool multiEntry }) Index
@DomName('IDBObjectStore.createIndex')
delete(key_OR_keyRange) Future
@DomName('IDBObjectStore.delete')
deleteIndex(String name) → void
@DocsEditable(), @DomName('IDBObjectStore.deleteIndex')
getAll(Object range, [ int maxCount ]) Request
getAllKeys(Object range, [ int maxCount ]) Request
getObject(key) Future
@DomName('IDBObjectStore.get')
index(String name) Index
@DocsEditable(), @DomName('IDBObjectStore.index')
openCursor({key, KeyRange range, String direction, bool autoAdvance }) Stream<CursorWithValue>
Creates a stream of cursors over the records in this object store. [...]
@DomName('IDBObjectStore.openCursor')
openKeyCursor(Object range, [ String direction ]) Request
put(value, [ key ]) Future
@DomName('IDBObjectStore.put')
noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns the result of the JavaScript objects toString method.
inherited

Operators

operator ==(other) bool
The equality operator. [...]
inherited

Static Properties

instanceRuntimeType Type
@Deprecated("Internal Use Only"), read-only