copyWith method
FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader
copyWith({
- int? customReportCssId,
- String? description,
- String? css,
- bool? isGlobal,
- bool? inactive,
- bool? active,
- List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader copyWith(
{int? customReportCssId,
String? description,
String? css,
bool? isGlobal,
bool? inactive,
bool? active,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader(
customReportCssId: customReportCssId ?? this.customReportCssId,
description: description ?? this.description,
css: css ?? this.css,
isGlobal: isGlobal ?? this.isGlobal,
inactive: inactive ?? this.inactive,
active: active ?? this.active,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}