addImages method
Add multiple images to the map where the key is the image ID and the value is the image bytes.
Implementation
Future<void> addImages(Map<String, Uint8List> images) =>
Future.wait(images.entries.map((e) => addImage(e.key, e.value)));