fullTextIndex static method

FullTextIndex fullTextIndex(
  1. Iterable<FullTextIndexItem> items
)

Creates a full-text index with the given full-text index items.

Typically the index items are the properties that are used to perform the match operation against.

Implementation

static FullTextIndex fullTextIndex(Iterable<FullTextIndexItem> items) =>
    FullTextIndex(items);