putMany<T> abstract method

FutureOr<void> putMany<T>(
  1. Map<String, T> object, {
  2. Duration? ttl,
})

Stores all entries from object. The optional ttl applies uniformly to every entry; pass null to skip expiration.

Implementation

FutureOr<void> putMany<T>(Map<String, T> object, {Duration? ttl});