copyWith method
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,
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);
}