toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final address1 = this.address1;
  final address2 = this.address2;
  final businessName = this.businessName;
  final city = this.city;
  final countryCode = this.countryCode;
  final phoneNumber = this.phoneNumber;
  final placeId = this.placeId;
  final postalCode = this.postalCode;
  final province = this.province;
  final resourceName = this.resourceName;
  return {
    'address1': ?address1,
    'address2': ?address2,
    'businessName': ?businessName,
    'city': ?city,
    'countryCode': ?countryCode,
    'phoneNumber': ?phoneNumber,
    'placeId': ?placeId,
    'postalCode': ?postalCode,
    'province': ?province,
    'resourceName': ?resourceName,
  };
}