handleResponseError method

Error handleResponseError(
  1. Response response
)

Implementation

Error handleResponseError(Response response) {
  if (response.data is JSONObjectAlias) {
    return handleJSONObjectResponseError(response);
  }

  if (response.data is JSONArrayAlias) {
    return handleJSONArrayResponseError(response);
  }

  return handleResponseUnknownError(response);
}