isLoading property
bool
get
isLoading
Getter for retrieving the current loading state of Ease.
Implementation
bool get isLoading => _isLoading;
set
isLoading
(bool loading)
Setter for updating the loading state of Ease and notifying listeners.
Implementation
set isLoading(bool loading) {
_isLoading = loading;
_listener?.call();
}