language property Null safety

FullTextLanguage? language

The dominant language.

Setting this enables word stemming, i.e. matching different cases of the same word ("big" and "bigger", for instance) and ignoring common "stop-words" ("the", "a", "of", etc.)

If left null no language-specific behaviors such as stemming and stop-word removal occur.

Implementation

FullTextLanguage? get language;
void language=(FullTextLanguage? value)

Implementation

set language(FullTextLanguage? value);