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