copyWith method

FeedbackResponseModel copyWith({
  1. bool? thumbsUp,
  2. String? feedback,
  3. bool? emotions,
  4. bool? inaccurateClone,
  5. bool? glitches,
  6. bool? audioQuality,
  7. bool? other,
  8. String? reviewStatus,
})

Implementation

FeedbackResponseModel copyWith(
    {bool? thumbsUp,
    String? feedback,
    bool? emotions,
    bool? inaccurateClone,
    bool? glitches,
    bool? audioQuality,
    bool? other,
    String? reviewStatus}) {
  return FeedbackResponseModel(
      thumbsUp: thumbsUp ?? this.thumbsUp,
      feedback: feedback ?? this.feedback,
      emotions: emotions ?? this.emotions,
      inaccurateClone: inaccurateClone ?? this.inaccurateClone,
      glitches: glitches ?? this.glitches,
      audioQuality: audioQuality ?? this.audioQuality,
      other: other ?? this.other,
      reviewStatus: reviewStatus ?? this.reviewStatus);
}