toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final addressLine = this.addressLine;
final city = this.city;
final line1 = this.line1;
final line2 = this.line2;
final line3 = this.line3;
final locationName = this.locationName;
final state = this.state;
final zip = this.zip;
return {
'addressLine': ?addressLine,
'city': ?city,
'line1': ?line1,
'line2': ?line2,
'line3': ?line3,
'locationName': ?locationName,
'state': ?state,
'zip': ?zip,
};
}