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