toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (addressLines != null) 'addressLines': addressLines!,
      if (administrativeArea != null)
        'administrativeArea': administrativeArea!,
      if (languageCode != null) 'languageCode': languageCode!,
      if (locality != null) 'locality': locality!,
      if (postalCode != null) 'postalCode': postalCode!,
      if (regionCode != null) 'regionCode': regionCode!,
      if (sublocality != null) 'sublocality': sublocality!,
    };