copyWithWrapped method
Implementation
UserFeedback copyWithWrapped(
{Wrapped<enums.UserFeedbackScore>? score, Wrapped<int>? timeInCallSecs}) {
return UserFeedback(
score: (score != null ? score.value : this.score),
timeInCallSecs: (timeInCallSecs != null
? timeInCallSecs.value
: this.timeInCallSecs));
}