isLoading property

bool get isLoading

Whether the operation is currently loading.

Implementation

bool get isLoading {
  throwIfDisposed('get isLoading');
  return _state.value == AsyncState.loading;
}