isLoading property

bool get isLoading

Whether the suggestions box is loading.

Implementation

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

Implementation

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