Fts4 constructor

const Fts4({
  1. String tokenizer = FtsTokenizer.simple,
  2. List<String> tokenizerArgs = const [],
})

Creates an Fts4 constant which can be used to mark an Entity annotated class as an FTS4 entity.

Implementation

const Fts4({
  this.tokenizer = FtsTokenizer.simple,
  this.tokenizerArgs = const [],
});