FullTextIndex constructor

FullTextIndex(
  1. Iterable<FullTextIndexItem> items
)

Creates a full text index from the FullTextIndexItems to index.

Implementation

factory FullTextIndex(Iterable<FullTextIndexItem> items) =>
    FullTextIndexImpl(items: items);