Not documented.

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

Properties

autoIncrement bool
read-only

indexNames List<String>
read-only

keyPath Object
read-only

name String
read-only

transaction Transaction
read-only

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

getObject(key) → Future

index(String name) → Index

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