isLoading property
Indicates if any image in the list is still loading.
Returns true
if the list is empty or if any Image in the list
has isLoading
set to true
. Otherwise, returns false
.
Implementation
bool get isLoading {
return length == 0 || any((img) => img.isLoading);
}