copyWith method
WebApiModulesAdministratorEmailHistoryEmailHistory
copyWith({
- String? emailHistoryId,
- String? reportId,
- String? fromUserId,
- String? fromWebUserId,
- String? fromUser,
- String? emailDate,
- String? status,
- String? emailText,
- String? emailTo,
- String? emailSubject,
- String? emailCC,
- String? title,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesAdministratorEmailHistoryEmailHistory copyWith(
{String? emailHistoryId,
String? reportId,
String? fromUserId,
String? fromWebUserId,
String? fromUser,
String? emailDate,
String? status,
String? emailText,
String? emailTo,
String? emailSubject,
String? emailCC,
String? title,
String? relatedToId,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesAdministratorEmailHistoryEmailHistory(
emailHistoryId: emailHistoryId ?? this.emailHistoryId,
reportId: reportId ?? this.reportId,
fromUserId: fromUserId ?? this.fromUserId,
fromWebUserId: fromWebUserId ?? this.fromWebUserId,
fromUser: fromUser ?? this.fromUser,
emailDate: emailDate ?? this.emailDate,
status: status ?? this.status,
emailText: emailText ?? this.emailText,
emailTo: emailTo ?? this.emailTo,
emailSubject: emailSubject ?? this.emailSubject,
emailCC: emailCC ?? this.emailCC,
title: title ?? this.title,
relatedToId: relatedToId ?? this.relatedToId,
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);
}