delete method

Future<bool> delete(
  1. String key, {
  2. bool? allowConcurrency,
  3. bool? allowUnconfirmed,
  4. bool? noCache,
})

Implementation

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