copyWith method

Implementation

WebApiModulesSettingsWebCatalogSettingsWebCatalogWebCatalog copyWith(
    {String? webCatalogId,
    String? description,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes}) {
  return WebApiModulesSettingsWebCatalogSettingsWebCatalogWebCatalog(
      webCatalogId: webCatalogId ?? this.webCatalogId,
      description: description ?? this.description,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes);
}