addAll method
Adds a multiple annotations to the map. This much faster than calling add multiple times
Implementation
Future<void> addAll(Iterable<T> annotations) async {
for (final a in annotations) {
_idToAnnotation[a.id] = a;
}
await _setAll();
}