isReloading property

bool isReloading

Whether the associated pod was recomputed because of a dependency change (using watch), after at least one value/error was emitted.

If a pod rebuilds because one of its dependencies changed (using watch), then isReloading will be true. If a pod rebuilds only due to refresh, then isReloading will be false (and isRefreshing will be true).

See also isRefreshing for manual pod rebuild.

Implementation

bool get isReloading => (hasValue || hasError) && this is AsyncLoading;