getEntries<T> method
Implementation
Future<Map<String, T>> getEntries<T>(
Iterable<String> keys, {
bool? allowConcurrency,
bool? noCache,
}) async {
final obj = await _delegate.get(
keys,
interop.DurableObjectGetOptions()
..allowConcurrency = allowConcurrency
..noCache = noCache,
);
return dartify(obj) as Map<String, T>;
}