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