copyWith method
FwStandardModulesAdministratorCustomReportLayoutCustomReportLayoutLogic
copyWith({
- String? customReportLayoutId,
- String? webUserId,
- String? userName,
- String? baseReport,
- String? description,
- String? category,
- String? html,
- String? customReportCssIds,
- String? customReportCssDescriptions,
- String? customReportCssRules,
- String? customReportGlobalCssRules,
- bool? active,
- bool? inactive,
- String? assignTo,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
FwStandardModulesAdministratorCustomReportLayoutCustomReportLayoutLogic
copyWith(
{String? customReportLayoutId,
String? webUserId,
String? userName,
String? baseReport,
String? description,
String? category,
String? html,
String? customReportCssIds,
String? customReportCssDescriptions,
String? customReportCssRules,
String? customReportGlobalCssRules,
bool? active,
bool? inactive,
String? assignTo,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return FwStandardModulesAdministratorCustomReportLayoutCustomReportLayoutLogic(
customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
webUserId: webUserId ?? this.webUserId,
userName: userName ?? this.userName,
baseReport: baseReport ?? this.baseReport,
description: description ?? this.description,
category: category ?? this.category,
html: html ?? this.html,
customReportCssIds: customReportCssIds ?? this.customReportCssIds,
customReportCssDescriptions:
customReportCssDescriptions ?? this.customReportCssDescriptions,
customReportCssRules: customReportCssRules ?? this.customReportCssRules,
customReportGlobalCssRules:
customReportGlobalCssRules ?? this.customReportGlobalCssRules,
active: active ?? this.active,
inactive: inactive ?? this.inactive,
assignTo: assignTo ?? this.assignTo,
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);
}