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,
  10. bool? hasImport,
  11. FwStandardBusinessLogicFwBusinessLogic? original,
  12. String? createdByUserId,
  13. String? createdByUserName,
  14. String? createdDateTime,
  15. String? modifiedByUserId,
  16. String? modifiedByUserName,
  17. String? modifiedDateTime,
})

Implementation

FwStandardModulesAdministratorCustomReportCssCustomReportCssLoader copyWith({
  int? customReportCssId,
  String? description,
  String? css,
  bool? isGlobal,
  bool? inactive,
  bool? active,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  FwStandardBusinessLogicFwBusinessLogic? original,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    hasImport: hasImport ?? this.hasImport,
    original: original ?? this.original,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}