Future<void> putAll(Map<String, dynamic> values) async { for (final entry in values.entries) { await putObject(entry.key, entry.value); } }