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