continue_ method

  1. @JS('continue')
void continue_([
  1. JSAny? key
])

The continue() method of the IDBCursor interface advances the cursor to the next position along its direction, to the item whose key matches the optional key parameter. If no key is specified, the cursor advances to the immediate next position, based on its direction.

Implementation

@JS('continue')
external void continue_([JSAny? key]);