toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final httpStatusCode = this.httpStatusCode;
final person = this.person;
final requestedResourceName = this.requestedResourceName;
final status = this.status;
return {
'httpStatusCode': ?httpStatusCode,
'person': ?person,
'requestedResourceName': ?requestedResourceName,
'status': ?status,
};
}