updateAddressLine method

OrganizationContact updateAddressLine(
  1. List<String> line
)

Implementation

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