updateAddressCountry method

OrganizationContact updateAddressCountry(
  1. String country
)

Implementation

OrganizationContact updateAddressCountry(String country) => address == null
    ? copyWith(address: Address(country: country))
    : copyWith(address: address!.updateCountry(country));