toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final errorCode = this.errorCode;
final errorCodeDetail = this.errorCodeDetail;
final operationCode = this.operationCode;
final operationCodeDetail = this.operationCodeDetail;
return {
'errorCode': ?errorCode,
'errorCodeDetail': ?errorCodeDetail,
'operationCode': ?operationCode,
'operationCodeDetail': ?operationCodeDetail,
};
}