matchWholeWord property

bool get matchWholeWord

Whether the search matches whole words only.

Implementation

bool get matchWholeWord => _matchWholeWord;
set matchWholeWord (bool value)

Sets whether the search matches whole words only.

Implementation

set matchWholeWord(bool value) {
  if (_matchWholeWord == value) return;
  _matchWholeWord = value;
  _reperformSearch();
  notifyListeners();
}