isValidationError property

bool get isValidationError

Whether the status code represents a 400 Bad Request or 422 Unprocessable Entity validation error.

Implementation

bool get isValidationError => statusCode == 422 || statusCode == 400;