copyWith method
WebApiModulesSettingsWidgetGroupWidgetGroup
copyWith({
- String? widgetGroupId,
- String? widgetId,
- String? widgetDescription,
- String? groupId,
- String? groupName,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsWidgetGroupWidgetGroup copyWith(
{String? widgetGroupId,
String? widgetId,
String? widgetDescription,
String? groupId,
String? groupName,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsWidgetGroupWidgetGroup(
widgetGroupId: widgetGroupId ?? this.widgetGroupId,
widgetId: widgetId ?? this.widgetId,
widgetDescription: widgetDescription ?? this.widgetDescription,
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);
}