isLoading property

bool get isLoading

Whether the query is currently loading (fetching and has no data).

Implementation

bool get isLoading => status == QueryStatus.fetching && data == null;