updateAddressCity method

ExtendedContactDetail updateAddressCity(
  1. String city
)

Implementation

ExtendedContactDetail updateAddressCity(String city) => copyWith(
    address: address == null
        ? Address(city: city)
        : address!.copyWith(city: city));