updateAddressCountry method

Location updateAddressCountry(
  1. String country
)

Implementation

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