copyWith method

UserFeedback copyWith({
  1. UserFeedbackScore? score,
  2. int? timeInCallSecs,
})

Implementation

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