Inheritance
  • Object
  • Interceptor
  • ObjectStore
Annotations
  • @DomName('IDBObjectStore')
  • @Unstable()
  • @Native("IDBObjectStore")

Properties

autoIncrement bool
@DocsEditable(), @DomName('IDBObjectStore.autoIncrement'), final
indexNames List<String>
@Creates('DomStringList'), @DocsEditable(), @DomName('IDBObjectStore.indexNames'), @Returns('DomStringList|Null'), final
keyPath Object
@annotation_Creates_SerializedScriptValue, @DocsEditable(), @DomName('IDBObjectStore.keyPath'), final
name String
@DocsEditable(), @DomName('IDBObjectStore.name'), final
transaction Transaction
@DocsEditable(), @DomName('IDBObjectStore.transaction'), final
hashCode int
read-only, inherited
runtimeType Type
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
@DocsEditable(), @DomName('IDBObjectStore.getAll'), @Experimental()
getAllKeys(Object range, [ int maxCount ]) Request
@DocsEditable(), @DomName('IDBObjectStore.getAllKeys'), @Experimental()
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
@DocsEditable(), @DomName('IDBObjectStore.openKeyCursor'), @Experimental()
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 a string representation of this object.
inherited

Operators

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