copyWithWrapped method
FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader
copyWithWrapped({
- Wrapped<
int?> ? customReportCssId, - Wrapped<
String?> ? description, - Wrapped<
String?> ? css, - Wrapped<
bool?> ? isGlobal, - Wrapped<
bool?> ? inactive, - Wrapped<
bool?> ? active, - Wrapped<
List< ? custom,FwStandardDataFwCustomValue> ?> - Wrapped<
List< ? defaultFieldAttributes,FwStandardDataFwDefaultAttribute> ?> - Wrapped<
List< ? translation,FwStandardDataFwTranslatedValue> ?> - Wrapped<
bool?> ? hasImport, - Wrapped<
bool?> ? hasDocuments, - Wrapped<
FwStandardBusinessLogicFwBusinessLogic?> ? original, - Wrapped<
String?> ? createdByUserId, - Wrapped<
String?> ? createdByUserName, - Wrapped<
String?> ? createdDateTime, - Wrapped<
String?> ? modifiedByUserId, - Wrapped<
String?> ? modifiedByUserName, - Wrapped<
String?> ? modifiedDateTime,
Implementation
FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader
copyWithWrapped({
Wrapped<int?>? customReportCssId,
Wrapped<String?>? description,
Wrapped<String?>? css,
Wrapped<bool?>? isGlobal,
Wrapped<bool?>? inactive,
Wrapped<bool?>? active,
Wrapped<List<FwStandardDataFwCustomValue>?>? custom,
Wrapped<List<FwStandardDataFwDefaultAttribute>?>? defaultFieldAttributes,
Wrapped<List<FwStandardDataFwTranslatedValue>?>? translation,
Wrapped<bool?>? hasImport,
Wrapped<bool?>? hasDocuments,
Wrapped<FwStandardBusinessLogicFwBusinessLogic?>? original,
Wrapped<String?>? createdByUserId,
Wrapped<String?>? createdByUserName,
Wrapped<String?>? createdDateTime,
Wrapped<String?>? modifiedByUserId,
Wrapped<String?>? modifiedByUserName,
Wrapped<String?>? modifiedDateTime,
}) {
return FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader(
customReportCssId: (customReportCssId != null
? customReportCssId.value
: this.customReportCssId),
description: (description != null ? description.value : this.description),
css: (css != null ? css.value : this.css),
isGlobal: (isGlobal != null ? isGlobal.value : this.isGlobal),
inactive: (inactive != null ? inactive.value : this.inactive),
active: (active != null ? active.value : this.active),
custom: (custom != null ? custom.value : this.custom),
defaultFieldAttributes: (defaultFieldAttributes != null
? defaultFieldAttributes.value
: this.defaultFieldAttributes),
translation: (translation != null ? translation.value : this.translation),
hasImport: (hasImport != null ? hasImport.value : this.hasImport),
hasDocuments: (hasDocuments != null
? hasDocuments.value
: this.hasDocuments),
original: (original != null ? original.value : this.original),
createdByUserId: (createdByUserId != null
? createdByUserId.value
: this.createdByUserId),
createdByUserName: (createdByUserName != null
? createdByUserName.value
: this.createdByUserName),
createdDateTime: (createdDateTime != null
? createdDateTime.value
: this.createdDateTime),
modifiedByUserId: (modifiedByUserId != null
? modifiedByUserId.value
: this.modifiedByUserId),
modifiedByUserName: (modifiedByUserName != null
? modifiedByUserName.value
: this.modifiedByUserName),
modifiedDateTime: (modifiedDateTime != null
? modifiedDateTime.value
: this.modifiedDateTime),
);
}