copyWith method

WebApiModulesAdministratorControlsCustomReportLayoutGroupCustomReportLayoutGroup copyWith({
  1. String? customReportLayoutGroupId,
  2. String? customReportLayoutId,
  3. String? customReportLayoutDescription,
  4. String? groupId,
  5. String? groupName,
  6. String? dateStamp,
  7. String? auditNote,
  8. String? recordTitle,
  9. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  10. List<FwStandardDataFwCustomValue>? custom,
  11. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  12. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesAdministratorControlsCustomReportLayoutGroupCustomReportLayoutGroup
    copyWith(
        {String? customReportLayoutGroupId,
        String? customReportLayoutId,
        String? customReportLayoutDescription,
        String? groupId,
        String? groupName,
        String? dateStamp,
        String? auditNote,
        String? recordTitle,
        List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
        List<FwStandardDataFwCustomValue>? custom,
        List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
        List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesAdministratorControlsCustomReportLayoutGroupCustomReportLayoutGroup(
      customReportLayoutGroupId:
          customReportLayoutGroupId ?? this.customReportLayoutGroupId,
      customReportLayoutId: customReportLayoutId ?? this.customReportLayoutId,
      customReportLayoutDescription:
          customReportLayoutDescription ?? this.customReportLayoutDescription,
      groupId: groupId ?? this.groupId,
      groupName: groupName ?? this.groupName,
      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);
}