copyWith method
Implementation
CSATFeedbackFullDTO copyWith(
{AdditionalCommentDTO? comment, int? rating, String? type}) {
return CSATFeedbackFullDTO(
comment: comment ?? this.comment,
rating: rating ?? this.rating,
type: type ?? this.type,
);
}