批量存入
Future<void> putAll(Map<String, V> entries) async { for (final entry in entries.entries) { await put(entry.key, entry.value); } }