getEntries<T> method

Future<Map<String, T>> getEntries<T>(
  1. Iterable<String> keys, {
  2. bool? allowConcurrency,
  3. bool? noCache,
})

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>;
}