search property
Gets or sets the search text.
Implementation
String get search => _searchController.text;
Implementation
set search(String text) {
if (onSearch != null) {
if (text.isNotBlank) {
isSearching = true;
}
_searchController.text = text;
}
}