copyWith method

FwStandardModulesAdministratorCustomReportLayoutCustomReportLayoutLogic copyWith({
  1. String? customReportLayoutId,
  2. String? webUserId,
  3. String? userName,
  4. String? baseReport,
  5. String? description,
  6. String? category,
  7. String? html,
  8. String? customReportCssIds,
  9. String? customReportCssDescriptions,
  10. String? customReportCssRules,
  11. String? customReportGlobalCssRules,
  12. bool? active,
  13. bool? inactive,
  14. String? assignTo,
  15. String? dateStamp,
  16. String? auditNote,
  17. String? recordTitle,
  18. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  19. List<FwStandardDataFwCustomValue>? custom,
  20. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  21. 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);
}