getAllKeys method

IDBRequest getAllKeys([
  1. JSAny? query,
  2. int count
])

The getAllKeys() method of the IDBIndex interface asynchronously retrieves the primary keys of all objects inside the index, setting them as the result of the request object.

Implementation

external IDBRequest getAllKeys([
  JSAny? query,
  int count,
]);