Status constructor

Status(Map response)

Implementation

Status(Map response) {
  this._code = response["code"];
  this._errorType = response["errorType"];
  this._errorDetails = response["errorDetails"];
}