copyWith method

WebApiModulesSettingsWidgetGroupWidgetGroup copyWith({
  1. String? widgetGroupId,
  2. String? widgetId,
  3. String? widgetDescription,
  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

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);
}