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 (organization != null) 'organization': organization!,
      if (postalCode != null) 'postalCode': postalCode!,
      if (recipients != null) 'recipients': recipients!,
      if (regionCode != null) 'regionCode': regionCode!,
      if (revision != null) 'revision': revision!,
      if (sortingCode != null) 'sortingCode': sortingCode!,
      if (sublocality != null) 'sublocality': sublocality!,
    };