toJson method

Map<String, dynamic> toJson()

Implementation

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