copyWith method
Implementation
UserFeedback copyWith({enums.UserFeedbackScore? score, int? timeInCallSecs}) {
return UserFeedback(
score: score ?? this.score,
timeInCallSecs: timeInCallSecs ?? this.timeInCallSecs);
}
UserFeedback copyWith({enums.UserFeedbackScore? score, int? timeInCallSecs}) {
return UserFeedback(
score: score ?? this.score,
timeInCallSecs: timeInCallSecs ?? this.timeInCallSecs);
}