toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final address1 = this.address1;
  final address2 = this.address2;
  final city = this.city;
  final company = this.company;
  final contact = this.contact;
  final fax = this.fax;
  final phone = this.phone;
  final regionCode = this.regionCode;
  final state = this.state;
  final zip = this.zip;
  return {
    'address1': ?address1,
    'address2': ?address2,
    'city': ?city,
    'company': ?company,
    'contact': ?contact,
    'fax': ?fax,
    'phone': ?phone,
    'regionCode': ?regionCode,
    'state': ?state,
    'zip': ?zip,
  };
}