put<T> method
Implementation
Future<void> put<T>(
String key,
T value, {
bool? allowConcurrency,
bool? allowUnconfirmed,
bool? noCache,
}) async {
return _delegate.put(
key,
value,
interop.DurableObjectPutOptions()
..allowConcurrency = allowConcurrency
..allowUnconfirmed = allowUnconfirmed
..noCache = noCache,
);
}