copyWith method
Implementation
UpdateGroupCallParticipants copyWith({
int? groupCallId,
List<int>? participantUserIds,
}) => UpdateGroupCallParticipants(
groupCallId: groupCallId ?? this.groupCallId,
participantUserIds: participantUserIds ?? this.participantUserIds,
);