handleResponseError method
Implementation
Error handleResponseError(Response response) {
if (response.data is JSONObjectAlias) {
return handleJSONObjectResponseError(response);
}
if (response.data is JSONArrayAlias) {
return handleJSONArrayResponseError(response);
}
return handleResponseUnknownError(response);
}