copyWith method

FeedbackStatusDTO copyWith({
  1. bool? canSubmitFeedback,
})

Implementation

FeedbackStatusDTO copyWith({bool? canSubmitFeedback}) {
  return FeedbackStatusDTO(
      canSubmitFeedback: canSubmitFeedback ?? this.canSubmitFeedback);
}