isLoading property

bool isLoading

Whether the suggestions box is loading.

Implementation

bool get isLoading => _isLoading;
void isLoading=(bool value)

Implementation

set isLoading(bool value) {
  if (_isLoading == value) return;
  _isLoading = value;
  notifyListeners();
}