toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final error = this.error;
final errorDescription = this.errorDescription;
final httpResponseCode = this.httpResponseCode;
final resourceAddress = this.resourceAddress;
return {
'error': ?error,
'errorDescription': ?errorDescription,
'httpResponseCode': ?httpResponseCode,
'resourceAddress': ?resourceAddress,
};
}