updateAddressLine method

ExtendedContactDetail updateAddressLine(
  1. List<String> line
)

Implementation

ExtendedContactDetail updateAddressLine(List<String> line) => copyWith(
    address: address == null
        ? Address(line: line)
        : address!.copyWith(line: line));