putAll method
Batch put — builds one pre-sized buffer, single flush.
Implementation
@override
Future<void> putAll(Map<String, Uint8List> entries, {bool isLocal = false}) async {
if (entries.isEmpty) return;
for (final e in entries.entries) {
_bufferWrite(e.key, e.value, isLocal: isLocal);
}
}