GetSMTPConfigResponse constructor

GetSMTPConfigResponse({
  1. SMTPConfig? smtpConfig,
})

Implementation

factory GetSMTPConfigResponse({
  $26.SMTPConfig? smtpConfig,
}) {
  final _result = create();
  if (smtpConfig != null) {
    _result.smtpConfig = smtpConfig;
  }
  return _result;
}