isLoading property
bool
get
isLoading
Returns true if the data is currently being loaded or not ready for display. Typically used to show loading indicators or placeholders.
Implementation
bool get isLoading =>
status == ServiceStatus.none || status == ServiceStatus.loading;