copyWith method
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,
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);
}