isFinished property

  1. @Deprecated("Use `action.status.isCompletedOk` instead. This will be removed.")
bool isFinished

Returns true only if the action finished with no errors. In other words, if the methods before, reduce and after all finished executing without throwing any errors.

Implementation

@Deprecated("Use `action.status.isCompletedOk` instead. This will be removed.")
bool get isFinished => _status.isFinished;