copyWith method

FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader copyWith({
  1. int? customReportCssId,
  2. String? description,
  3. String? css,
  4. bool? isGlobal,
  5. bool? inactive,
  6. bool? active,
  7. List<FwStandardDataFwCustomValue>? custom,
  8. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  9. 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);
}