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. dynamic urlIdentifier,
  19. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  20. List<FwStandardDataFwCustomValue>? custom,
  21. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  22. FwStandardBusinessLogicFwBusinessLogic? original,
  23. List<FwStandardDataFwTranslatedValue>? translation,
  24. bool? hasImport,
  25. String? createdByUserId,
  26. String? createdByUserName,
  27. String? createdDateTime,
  28. String? modifiedByUserId,
  29. String? modifiedByUserName,
  30. String? modifiedDateTime,
})

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,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}