upperBound static method

IDBKeyRange upperBound(
  1. JSAny? upper, [
  2. bool open
])

The upperBound() static method of the IDBKeyRange interface creates a new upper-bound key range. By default, it includes the upper endpoint value and is closed.

Implementation

external static IDBKeyRange upperBound(
  JSAny? upper, [
  bool open,
]);