deleteEntries method

Future<bool> deleteEntries(
  1. Iterable<String> keys, {
  2. bool? allowConcurrency,
  3. bool? allowUnconfirmed,
  4. bool? noCache,
})

Implementation

Future<bool> deleteEntries(
  Iterable<String> keys, {
  bool? allowConcurrency,
  bool? allowUnconfirmed,
  bool? noCache,
}) async {
  return _delegate.deleteEntries(
    keys,
    interop.DurableObjectPutOptions()
      ..allowConcurrency = allowConcurrency
      ..allowUnconfirmed = allowUnconfirmed
      ..noCache = noCache,
  );
}