Fts3 constructor

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

Creates an Fts3 constant which can be used to mark an Entity annotated class as an FTS3 entity.

Implementation

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