handleResponse<T>  method 
      
dynamic
handleResponse<T>( 
    
- Response response, {
- dynamic handleSuccess(- Response response
 
Handles an API network response from Dio.
handleSuccess overrides the return value
handleFailure is called then the response status is not 200.
You can return a different value using this callback.
Implementation
dynamic handleResponse<T>(Response response,
    {Function(Response response)? handleSuccess}) {
  bool wasSuccessful = false;
  if (response.statusCode != null) {
    wasSuccessful =
        (response.statusCode!) >= 200 && (response.statusCode!) < 300;
  }
  if (wasSuccessful == true && handleSuccess != null) {
    return handleSuccess(response);
  }
  if (T.toString() != 'dynamic') {
    return _morphJsonResponse<T>(response.data);
  } else {
    return response.data;
  }
}