copyWith method
WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory
copyWith({
- int? systemUpdateHistoryId,
- String? usersId,
- String? userName,
- DateTime? updateDateTime,
- String? fromVersion,
- String? toVersion,
- String? errorMessage,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory copyWith(
{int? systemUpdateHistoryId,
String? usersId,
String? userName,
DateTime? updateDateTime,
String? fromVersion,
String? toVersion,
String? errorMessage,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorSystemUpdateHistorySystemUpdateHistory(
systemUpdateHistoryId:
systemUpdateHistoryId ?? this.systemUpdateHistoryId,
usersId: usersId ?? this.usersId,
userName: userName ?? this.userName,
updateDateTime: updateDateTime ?? this.updateDateTime,
fromVersion: fromVersion ?? this.fromVersion,
toVersion: toVersion ?? this.toVersion,
errorMessage: errorMessage ?? this.errorMessage,
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);
}