success property
Returns true
if the response indicates success. Otherwise false
.
Unlike HttpResponse.isOk, this method also checks the response body for error codes.
Implementation
bool get success {
if (!isOk) return false;
if (body != null && body!.isRight) {
final json = body!.right;
// check if "exception" or "errorcode" is present in the response body
if (json.containsKey("exception") || json.containsKey("errorcode")) {
return false;
}
}
return true;
}