deleteEntries method
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,
  );
}