copyWith method

WebApiModulesSettingsSystemSettingsEmailSettingsEmailSettings copyWith({
  1. String? emailSettingsId,
  2. String? host,
  3. int? port,
  4. bool? enableSsl,
  5. String? accountPassword,
  6. String? accountUsername,
  7. String? authenticationType,
  8. int? deleteDays,
  9. String? emailFromAddress,
  10. String? emailFromDisplay,
  11. bool? enableReplyTo,
  12. String? dateStamp,
  13. String? auditNote,
  14. String? recordTitle,
  15. dynamic urlIdentifier,
  16. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  17. List<FwStandardDataFwCustomValue>? custom,
  18. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  19. FwStandardBusinessLogicFwBusinessLogic? original,
  20. List<FwStandardDataFwTranslatedValue>? translation,
  21. bool? hasImport,
  22. String? createdByUserId,
  23. String? createdByUserName,
  24. String? createdDateTime,
  25. String? modifiedByUserId,
  26. String? modifiedByUserName,
  27. String? modifiedDateTime,
})

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,
  dynamic urlIdentifier,
  List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  List<FwStandardDataFwCustomValue>? custom,
  List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  FwStandardBusinessLogicFwBusinessLogic? original,
  List<FwStandardDataFwTranslatedValue>? translation,
  bool? hasImport,
  String? createdByUserId,
  String? createdByUserName,
  String? createdDateTime,
  String? modifiedByUserId,
  String? modifiedByUserName,
  String? modifiedDateTime,
}) {
  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,
    urlIdentifier: urlIdentifier ?? this.urlIdentifier,
    fields: fields ?? this.fields,
    custom: custom ?? this.custom,
    defaultFieldAttributes:
        defaultFieldAttributes ?? this.defaultFieldAttributes,
    original: original ?? this.original,
    translation: translation ?? this.translation,
    hasImport: hasImport ?? this.hasImport,
    createdByUserId: createdByUserId ?? this.createdByUserId,
    createdByUserName: createdByUserName ?? this.createdByUserName,
    createdDateTime: createdDateTime ?? this.createdDateTime,
    modifiedByUserId: modifiedByUserId ?? this.modifiedByUserId,
    modifiedByUserName: modifiedByUserName ?? this.modifiedByUserName,
    modifiedDateTime: modifiedDateTime ?? this.modifiedDateTime,
  );
}