SmtpConfig constructor

SmtpConfig({
  1. required InternetAddress address,
  2. required int port,
  3. required String hostname,
})

Implementation

SmtpConfig({
  required this.address,
  required this.port,
  required this.hostname,
});