isRegex property
bool
get
isRegex
Whether the search uses regular expressions.
Implementation
bool get isRegex => _isRegex;
set
isRegex
(bool value)
Sets whether the search uses regular expressions.
Implementation
set isRegex(bool value) {
if (_isRegex == value) return;
_isRegex = value;
_reperformSearch();
notifyListeners();
}