bound static method

IDBKeyRange bound(
  1. JSAny? lower,
  2. JSAny? upper, [
  3. bool lowerOpen,
  4. bool upperOpen,
])

The bound() static method of the IDBKeyRange interface creates a new key range with the specified upper and lower bounds. The bounds can be open (that is, the bounds exclude the endpoint values) or closed (that is, the bounds include the endpoint values). By default, the bounds are closed.

Implementation

external static IDBKeyRange bound(
  JSAny? lower,
  JSAny? upper, [
  bool lowerOpen,
  bool upperOpen,
]);