copyWith method
WebApiModulesSettingsSystemSettingsEmailSettingsEmailSettings
copyWith({
- String? emailSettingsId,
- String? host,
- int? port,
- bool? enableSsl,
- String? accountPassword,
- String? accountUsername,
- String? authenticationType,
- int? deleteDays,
- String? emailFromAddress,
- String? emailFromDisplay,
- bool? enableReplyTo,
- String? dateStamp,
- String? auditNote,
- String? recordTitle,
- List<
FwStandardBusinessLogicFwBusinessLogicFieldDefinition> ? fields, - List<
FwStandardDataFwCustomValue> ? custom, - List<
FwStandardDataFwDefaultAttribute> ? defaultFieldAttributes, - List<
FwStandardDataFwTranslatedValue> ? translation,
Implementation
WebApiModulesSettingsSystemSettingsEmailSettingsEmailSettings copyWith(
{String? emailSettingsId,
String? host,
int? port,
bool? enableSsl,
String? accountPassword,
String? accountUsername,
String? authenticationType,
int? deleteDays,
String? emailFromAddress,
String? emailFromDisplay,
bool? enableReplyTo,
String? dateStamp,
String? auditNote,
String? recordTitle,
List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
List<FwStandardDataFwCustomValue>? custom,
List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
List<FwStandardDataFwTranslatedValue>? translation}) {
return WebApiModulesSettingsSystemSettingsEmailSettingsEmailSettings(
emailSettingsId: emailSettingsId ?? this.emailSettingsId,
host: host ?? this.host,
port: port ?? this.port,
enableSsl: enableSsl ?? this.enableSsl,
accountPassword: accountPassword ?? this.accountPassword,
accountUsername: accountUsername ?? this.accountUsername,
authenticationType: authenticationType ?? this.authenticationType,
deleteDays: deleteDays ?? this.deleteDays,
emailFromAddress: emailFromAddress ?? this.emailFromAddress,
emailFromDisplay: emailFromDisplay ?? this.emailFromDisplay,
enableReplyTo: enableReplyTo ?? this.enableReplyTo,
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);
}