FullTextIndexConfiguration constructor Null safety
- List<
String> expressions, - {bool? ignoreAccents,
- 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);