copyWith method

WebApiModulesSharedControlsCustomReportLayoutUserCustomReportLayoutUser copyWith({
  1. String? customReportLayoutUserId,
  2. String? customReportLayoutId,
  3. String? customReportLayoutDescription,
  4. String? webUserId,
  5. String? userId,
  6. String? userName,
  7. String? dateStamp,
  8. String? auditNote,
  9. String? recordTitle,
  10. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  11. List<FwStandardDataFwCustomValue>? custom,
  12. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  13. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesSharedControlsCustomReportLayoutUserCustomReportLayoutUser
    copyWith(
        {String? customReportLayoutUserId,
        String? customReportLayoutId,
        String? customReportLayoutDescription,
        String? webUserId,
        String? userId,
        String? userName,
        String? dateStamp,
        String? auditNote,
        String? recordTitle,
        List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
        List<FwStandardDataFwCustomValue>? custom,
        List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
        List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesSharedControlsCustomReportLayoutUserCustomReportLayoutUser(
      customReportLayoutUserId:
          customReportLayoutUserId ?? this.customReportLayoutUserId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      customReportLayoutDescription:
          customReportLayoutDescription ?? this.customReportLayoutDescription,
      webUserId: webUserId ?? this.webUserId,
      userId: userId ?? this.userId,
      userName: userName ?? this.userName,
      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);
}