copyWithWrapped method

WebApiLogicAppFuncCustomFormModel copyWithWrapped({
  1. Wrapped<String?>? baseForm,
  2. Wrapped<String?>? customFormId,
  3. Wrapped<String?>? description,
  4. Wrapped<bool?>? thisUserOnly,
  5. Wrapped<String?>? html,
  6. Wrapped<String?>? assignTo,
})

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),
  );
}