yandex function

SmtpServer yandex(
  1. String username,
  2. String password
)

Implementation

SmtpServer yandex(String username, String password) =>
    SmtpServer('smtp.yandex.com',
        port: 465, ssl: true, username: username, password: password);