isInProgressOrSuccess property

bool isInProgressOrSuccess

Indicates whether the form is either in progress or has been submitted successfully.

This is useful for showing a loading indicator or disabling the submit button to prevent duplicate submissions.

Implementation

bool get isInProgressOrSuccess => isInProgress || isSuccess;