unique property
bool
get
unique
The unique read-only property returns a boolean that
states whether the index allows duplicate keys.
This is decided when the index is created, using the
IDBObjectStore.createIndex method. This method takes an optional
parameter, unique, which if set to true means that the index
will not be able to accept duplicate entries.
Implementation
external bool get unique;