updateAddressState method

ExtendedContactDetail updateAddressState(
  1. String state
)

Implementation

ExtendedContactDetail updateAddressState(String state) => copyWith(
    address: address == null
        ? Address(state: state)
        : address!.copyWith(state: state));