copyWith method

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

Implementation

WebApiLogicAppFuncCustomFormModel copyWith(
    {String? baseForm,
    String? customFormId,
    String? description,
    bool? thisUserOnly,
    String? html,
    String? assignTo}) {
  return WebApiLogicAppFuncCustomFormModel(
      baseForm: baseForm ?? this.baseForm,
      customFormId: customFormId ?? this.customFormId,
      description: description ?? this.description,
      thisUserOnly: thisUserOnly ?? this.thisUserOnly,
      html: html ?? this.html,
      assignTo: assignTo ?? this.assignTo);
}