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. dynamic urlIdentifier,
  16. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  17. List<FwStandardDataFwCustomValue>? custom,
  18. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  19. FwStandardBusinessLogicFwBusinessLogic? original,
  20. List<FwStandardDataFwTranslatedValue>? translation,
  21. bool? hasImport,
  22. bool? hasDocuments,
  23. String? createdByUserId,
  24. String? createdByUserName,
  25. String? createdDateTime,
  26. String? modifiedByUserId,
  27. String? modifiedByUserName,
  28. String? modifiedDateTime,
})

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,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  bool? hasDocuments,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    hasDocuments: hasDocuments ?? this.hasDocuments,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}