updateAddressCountry method

ExtendedContactDetail updateAddressCountry(
  1. String country
)

Implementation

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