updateAddressCountry method

InsurancePlanContact updateAddressCountry(
  1. String country
)

Implementation

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