copyWith method
WebApiModulesAdministratorHotfixHotfix
copyWith({
- String? hotfixId,
- String? fileName,
- String? description,
- String? hotfixBegin,
- String? hotfixEnd,
- double? hotfixSeconds,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorHotfixHotfix copyWith(
{String? hotfixId,
String? fileName,
String? description,
String? hotfixBegin,
String? hotfixEnd,
double? hotfixSeconds,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorHotfixHotfix(
hotfixId: hotfixId ?? this.hotfixId,
fileName: fileName ?? this.fileName,
description: description ?? this.description,
hotfixBegin: hotfixBegin ?? this.hotfixBegin,
hotfixEnd: hotfixEnd ?? this.hotfixEnd,
hotfixSeconds: hotfixSeconds ?? this.hotfixSeconds,
auditNote: auditNote ?? this.auditNote,
recordTitle: recordTitle ?? this.recordTitle,
fields: fields ?? this.fields,
custom: custom ?? this.custom,
defaultFieldAttributes:
defaultFieldAttributes ?? this.defaultFieldAttributes,
translation: translation ?? this.translation);
}