toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final country = this.country;
final locality = this.locality;
final postalCode = this.postalCode;
final region = this.region;
final streetAddress = this.streetAddress;
return {
'country': ?country,
'locality': ?locality,
'postalCode': ?postalCode,
'region': ?region,
'streetAddress': ?streetAddress,
};
}