SmtpServer constructor

SmtpServer(
  1. String host, {
  2. int port = 587,
  3. String? name,
  4. bool ignoreBadCertificate = false,
  5. bool ssl = false,
  6. bool allowInsecure = false,
  7. String? username,
  8. String? password,
  9. String? xoauth2Token,
})

Implementation

SmtpServer(this.host,
    {this.port = 587,
    String? name,
    this.ignoreBadCertificate = false,
    this.ssl = false,
    this.allowInsecure = false,
    this.username,
    this.password,
    this.xoauth2Token});