Not documented.
- Annotations
- DomName('IDBObjectStore')
- Unstable()
Properties
- bool autoIncrement
-
read-only
- List<String> indexNames
-
read-only
- Object keyPath
-
read-only
- String name
-
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