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