putMany abstract method

Future<void> putMany(
  1. Map<String, dynamic> values,
  2. Duration ttl
)

Stores multiple values in the cache.

  • Parameters:
    • values: A map of key-value pairs to store.
    • ttl: The duration for which the items should remain in the cache.

Implementation

Future<void> putMany(Map<String, dynamic> values, Duration ttl);