copyWithWrapped method
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));
}