FullTextIndexConfiguration constructor

FullTextIndexConfiguration(
  1. List<String> expressions, {
  2. bool? ignoreAccents,
  3. FullTextLanguage? language,
})

Creates a specification of a full text Index through a list of N1QL expressions.

Implementation

factory FullTextIndexConfiguration(
  List<String> expressions, {
  bool? ignoreAccents,
  FullTextLanguage? language,
}) =>
    _FullTextIndexConfiguration(expressions, ignoreAccents, language);