copyWith method
WebApiModulesAdministratorSystemUpdateHistoryLogSystemUpdateHistoryLog
copyWith({
- int? systemUpdateHistoryLogId,
- int? systemUpdateHistoryId,
- String? messsage,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorSystemUpdateHistoryLogSystemUpdateHistoryLog
copyWith(
{int? systemUpdateHistoryLogId,
int? systemUpdateHistoryId,
String? messsage,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorSystemUpdateHistoryLogSystemUpdateHistoryLog(
systemUpdateHistoryLogId:
systemUpdateHistoryLogId ?? this.systemUpdateHistoryLogId,
systemUpdateHistoryId:
systemUpdateHistoryId ?? this.systemUpdateHistoryId,
messsage: messsage ?? this.messsage,
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);
}