copyWith method
Implementation
ServiceDeskCustomerDTO copyWith(
{List<String>? accountIds, List<String>? usernames}) {
return ServiceDeskCustomerDTO(
accountIds: accountIds ?? this.accountIds,
usernames: usernames ?? this.usernames,
);
}