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