putAll method

  1. @override
Future<void> putAll(
  1. Map<String, Uint8List> entries, {
  2. bool isLocal = false,
})
override

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);
  }
}