copyWithWrapped method

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

Implementation

FeedbackResponseModel copyWithWrapped(
    {Wrapped<bool>? thumbsUp,
    Wrapped<String>? feedback,
    Wrapped<bool>? emotions,
    Wrapped<bool>? inaccurateClone,
    Wrapped<bool>? glitches,
    Wrapped<bool>? audioQuality,
    Wrapped<bool>? other,
    Wrapped<String?>? reviewStatus}) {
  return FeedbackResponseModel(
      thumbsUp: (thumbsUp != null ? thumbsUp.value : this.thumbsUp),
      feedback: (feedback != null ? feedback.value : this.feedback),
      emotions: (emotions != null ? emotions.value : this.emotions),
      inaccurateClone: (inaccurateClone != null
          ? inaccurateClone.value
          : this.inaccurateClone),
      glitches: (glitches != null ? glitches.value : this.glitches),
      audioQuality:
          (audioQuality != null ? audioQuality.value : this.audioQuality),
      other: (other != null ? other.value : this.other),
      reviewStatus:
          (reviewStatus != null ? reviewStatus.value : this.reviewStatus));
}