updateAddressCountry method

PatientContact updateAddressCountry(
  1. String country
)

Implementation

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