copyWith method

WebApiModulesAdministratorCustomFormCustomForm copyWith({
  1. String? customFormId,
  2. String? webUserId,
  3. String? userName,
  4. String? baseForm,
  5. String? description,
  6. String? html,
  7. bool? active,
  8. bool? inactive,
  9. String? assignTo,
  10. bool? selfAssign,
  11. String? dateStamp,
  12. String? auditNote,
  13. String? recordTitle,
  14. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  15. List<FwStandardDataFwCustomValue>? custom,
  16. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  17. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesAdministratorCustomFormCustomForm copyWith(
    {String? customFormId,
    String? webUserId,
    String? userName,
    String? baseForm,
    String? description,
    String? html,
    bool? active,
    bool? inactive,
    String? assignTo,
    bool? selfAssign,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesAdministratorCustomFormCustomForm(
      customFormId: customFormId ?? this.customFormId,
      webUserId: webUserId ?? this.webUserId,
      userName: userName ?? this.userName,
      baseForm: baseForm ?? this.baseForm,
      description: description ?? this.description,
      html: html ?? this.html,
      active: active ?? this.active,
      inactive: inactive ?? this.inactive,
      assignTo: assignTo ?? this.assignTo,
      selfAssign: selfAssign ?? this.selfAssign,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}