copyWithWrapped method
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< ? fields,FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ?> - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?>
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));
}