copyWithWrapped method

FeedbackStatusDTO copyWithWrapped({
  1. Wrapped<bool?>? canSubmitFeedback,
})

Implementation

FeedbackStatusDTO copyWithWrapped({Wrapped<bool?>? canSubmitFeedback}) {
  return FeedbackStatusDTO(
      canSubmitFeedback: (canSubmitFeedback != null
          ? canSubmitFeedback.value
          : this.canSubmitFeedback));
}