putEntries<T> method
Implementation
Future<void> putEntries<T>(
Map<Object, T> entries, {
bool? allowConcurrency,
bool? allowUnconfirmed,
bool? noCache,
}) async {
return _delegate.putEntries<T>(
entries,
interop.DurableObjectPutOptions()
..allowConcurrency = allowConcurrency
..allowUnconfirmed = allowUnconfirmed
..noCache = noCache,
);
}