copyWithWrapped method

WebApiModulesSettingsSubCategorySubCategory copyWithWrapped({
  1. Wrapped<String?>? subCategoryId,
  2. Wrapped<String?>? subCategory,
  3. Wrapped<String?>? categoryId,
  4. Wrapped<String?>? category,
  5. Wrapped<String?>? typeId,
  6. Wrapped<String?>? type,
  7. Wrapped<String?>? recTypeDescription,
  8. Wrapped<String?>? recType,
  9. Wrapped<double?>? orderBy,
  10. Wrapped<int?>? pickListOrderBy,
  11. Wrapped<bool?>? inactive,
  12. Wrapped<String?>? dateStamp,
  13. Wrapped<String?>? auditNote,
  14. Wrapped<String?>? recordTitle,
  15. Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>? fields,
  16. Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
  17. Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
  18. Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
})

Implementation

WebApiModulesSettingsSubCategorySubCategory copyWithWrapped(
    {Wrapped<String?>? subCategoryId,
    Wrapped<String?>? subCategory,
    Wrapped<String?>? categoryId,
    Wrapped<String?>? category,
    Wrapped<String?>? typeId,
    Wrapped<String?>? type,
    Wrapped<String?>? recTypeDescription,
    Wrapped<String?>? recType,
    Wrapped<double?>? orderBy,
    Wrapped<int?>? pickListOrderBy,
    Wrapped<bool?>? inactive,
    Wrapped<String?>? dateStamp,
    Wrapped<String?>? auditNote,
    Wrapped<String?>? recordTitle,
    Wrapped<List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>?>?
        fields,
    Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
    Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
    Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation}) {
  return WebApiModulesSettingsSubCategorySubCategory(
      subCategoryId:
          (subCategoryId != null ? subCategoryId.value : this.subCategoryId),
      subCategory:
          (subCategory != null ? subCategory.value : this.subCategory),
      categoryId: (categoryId != null ? categoryId.value : this.categoryId),
      category: (category != null ? category.value : this.category),
      typeId: (typeId != null ? typeId.value : this.typeId),
      type: (type != null ? type.value : this.type),
      recTypeDescription: (recTypeDescription != null
          ? recTypeDescription.value
          : this.recTypeDescription),
      recType: (recType != null ? recType.value : this.recType),
      orderBy: (orderBy != null ? orderBy.value : this.orderBy),
      pickListOrderBy: (pickListOrderBy != null
          ? pickListOrderBy.value
          : this.pickListOrderBy),
      inactive: (inactive != null ? inactive.value : this.inactive),
      dateStamp: (dateStamp != null ? dateStamp.value : this.dateStamp),
      auditNote: (auditNote != null ? auditNote.value : this.auditNote),
      recordTitle:
          (recordTitle != null ? recordTitle.value : this.recordTitle),
      fields: (fields != null ? fields.value : this.fields),
      custom: (custom != null ? custom.value : this.custom),
      defaultFieldAttributes: (defaultFieldAttributes != null
          ? defaultFieldAttributes.value
          : this.defaultFieldAttributes),
      translation:
          (translation != null ? translation.value : this.translation));
}