isMutating property

bool get isMutating

Returns true if ANY mutation is currently executing.

Reactive: Reading this inside a ZenObserver or computed property registers a dependency and auto-rebuilds the widget whenever mutation activity starts or stops.

Example:

ZenObserver(() => Zen.isMutating ? const SavingSpinner() : const SizedBox.shrink())

Implementation

static bool get isMutating => ZenMutation.anyMutating;