MmConfigEmailSettings constructor

MmConfigEmailSettings({
  1. bool? enableSignUpWithEmail,
  2. bool? enableSignInWithEmail,
  3. bool? enableSignInWithUsername,
  4. bool? sendEmailNotifications,
  5. bool? requireEmailVerification,
  6. String? feedbackName,
  7. String? feedbackEmail,
  8. String? feedbackOrganization,
  9. String? sMTPUsername,
  10. String? sMTPPassword,
  11. String? sMTPServer,
  12. String? sMTPPort,
  13. String? connectionSecurity,
  14. String? inviteSalt,
  15. String? passwordResetSalt,
  16. bool? sendPushNotifications,
  17. String? pushNotificationServer,
  18. String? pushNotificationContents,
  19. bool? enableEmailBatching,
  20. int? emailBatchingBufferSize,
  21. int? emailBatchingInterval,
})

Returns a new MmConfigEmailSettings instance.

Implementation

MmConfigEmailSettings({
  this.enableSignUpWithEmail,
  this.enableSignInWithEmail,
  this.enableSignInWithUsername,
  this.sendEmailNotifications,
  this.requireEmailVerification,
  this.feedbackName,
  this.feedbackEmail,
  this.feedbackOrganization,
  this.sMTPUsername,
  this.sMTPPassword,
  this.sMTPServer,
  this.sMTPPort,
  this.connectionSecurity,
  this.inviteSalt,
  this.passwordResetSalt,
  this.sendPushNotifications,
  this.pushNotificationServer,
  this.pushNotificationContents,
  this.enableEmailBatching,
  this.emailBatchingBufferSize,
  this.emailBatchingInterval,
});