copyWith method

CSATFeedbackFullDTO copyWith({
  1. AdditionalCommentDTO? comment,
  2. int? rating,
  3. String? type,
})

Implementation

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