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