toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (city != null) 'city': city!,
  if (cityStateZipAddressLine != null)
    'cityStateZipAddressLine': cityStateZipAddressLine!,
  if (firm != null) 'firm': firm!,
  if (firstAddressLine != null) 'firstAddressLine': firstAddressLine!,
  if (secondAddressLine != null) 'secondAddressLine': secondAddressLine!,
  if (state != null) 'state': state!,
  if (urbanization != null) 'urbanization': urbanization!,
  if (zipCode != null) 'zipCode': zipCode!,
  if (zipCodeExtension != null) 'zipCodeExtension': zipCodeExtension!,
};