fetch method

Map<String, Doc> fetch(
  1. List<String> ids
)

Implementation

Map<String, Doc> fetch(List<String> ids) {
  _ensureOpen();
  final docs = <String, Doc>{};
  for (final hit in _raw.fetch(ids)) {
    final doc = _docFromHit(hit);
    docs[doc.id] = doc;
  }
  return docs;
}