lowerBound static method

IDBKeyRange lowerBound(
  1. JSAny? lower, [
  2. bool open
])

The lowerBound() static method of the IDBKeyRange interface creates a new key range with only a lower bound. By default, it includes the lower endpoint value and is closed.

Implementation

external static IDBKeyRange lowerBound(
  JSAny? lower, [
  bool open,
]);