toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (address != null) 'address': address!,
  if (englishLatinAddress != null)
    'englishLatinAddress': englishLatinAddress!,
  if (geocode != null) 'geocode': geocode!,
  if (metadata != null) 'metadata': metadata!,
  if (uspsData != null) 'uspsData': uspsData!,
  if (verdict != null) 'verdict': verdict!,
};