copyWithWrapped method
Implementation
WebApiLogicAppFuncCustomFormModel copyWithWrapped({
Wrapped<String?>? baseForm,
Wrapped<String?>? customFormId,
Wrapped<String?>? description,
Wrapped<bool?>? thisUserOnly,
Wrapped<String?>? html,
Wrapped<String?>? assignTo,
}) {
return WebApiLogicAppFuncCustomFormModel(
baseForm: (baseForm != null ? baseForm.value : this.baseForm),
customFormId: (customFormId != null
? customFormId.value
: this.customFormId),
description: (description != null ? description.value : this.description),
thisUserOnly: (thisUserOnly != null
? thisUserOnly.value
: this.thisUserOnly),
html: (html != null ? html.value : this.html),
assignTo: (assignTo != null ? assignTo.value : this.assignTo),
);
}