toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final business = this.business;
final poBox = this.poBox;
final residential = this.residential;
return {
'business': ?business,
'poBox': ?poBox,
'residential': ?residential,
};
}