copyWithWrapped method
Implementation
FeedbackSubmissionV3Body copyWithWrapped(
{Wrapped<String>? feedback, Wrapped<int?>? rating}) {
return FeedbackSubmissionV3Body(
feedback: (feedback != null ? feedback.value : this.feedback),
rating: (rating != null ? rating.value : this.rating));
}