Adds multiple annotations (faster than adding one-by-one).
Future<void> addAll(Iterable<T> annotations) async { for (final a in annotations) { _idToAnnotation[a.id] = a; } await _setAll(); }