copyWithWrapped method

FeedbackSubmissionV3Body copyWithWrapped({
  1. Wrapped<String>? feedback,
  2. Wrapped<int?>? rating,
})

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