updateAddressCity method

OrganizationContact updateAddressCity(
  1. String city
)

Implementation

OrganizationContact updateAddressCity(String city) => address == null
    ? copyWith(address: Address(city: city))
    : copyWith(address: address!.updateCity(city));