Dart SDK
dart:indexed_db
Index
class
Index
Properties
Methods
Properties
keyPath
multiEntry
name
objectStore
unique
Methods
count
get
getKey
openCursor
openKeyCursor
(Not documented.)
Annotations
DomName('IDBIndex')
Unstable()
Properties
Object
keyPath
read-only
bool
multiEntry
read-only
String
name
read-only
ObjectStore
objectStore
read-only
bool
unique
read-only
Methods
count
(
[
key_OR_range
]) →
Future
<
int
>
get
(
key
) →
Future
getKey
(
key
) →
Future
openCursor
(
{
key
,
KeyRange
range
,
String
direction
,
bool
autoAdvance
}) →
Stream
<
CursorWithValue
>
Creates a stream of cursors over the records in this object store.
openKeyCursor
(
{
key
,
KeyRange
range
,
String
direction
,
bool
autoAdvance
}) →
Stream
<
Cursor
>
Creates a stream of cursors over the records in this object store.