fromResponse method

Response fromResponse(
  1. Response response
)

Implementation

Response fromResponse(Response response) {
  _status = response.getStatus();
  success = response.success;
  message = response.message;
  action = response.action;
  data = response.data;
  errors = response.errors;

  return this;
}