copyWith method

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

Implementation

WebApiModulesSettingsSubCategorySubCategory copyWith(
    {String? subCategoryId,
    String? subCategory,
    String? categoryId,
    String? category,
    String? typeId,
    String? type,
    String? recTypeDescription,
    String? recType,
    double? orderBy,
    int? pickListOrderBy,
    bool? inactive,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesSettingsSubCategorySubCategory(
      subCategoryId: subCategoryId ?? this.subCategoryId,
      subCategory: subCategory ?? this.subCategory,
      categoryId: categoryId ?? this.categoryId,
      category: category ?? this.category,
      typeId: typeId ?? this.typeId,
      type: type ?? this.type,
      recTypeDescription: recTypeDescription ?? this.recTypeDescription,
      recType: recType ?? this.recType,
      orderBy: orderBy ?? this.orderBy,
      pickListOrderBy: pickListOrderBy ?? this.pickListOrderBy,
      inactive: inactive ?? this.inactive,
      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);
}