InMemoryServerDocumentCatalog constructor

InMemoryServerDocumentCatalog({
  1. Set<String>? documentIds,
})

Creates a catalog holding documentIds, empty by default.

Implementation

InMemoryServerDocumentCatalog({Set<String>? documentIds})
    : _ids = <String>{...?documentIds};