GetSMTPConfigResponse constructor

GetSMTPConfigResponse({
  1. SMTPConfig? smtpConfig,
})

Implementation

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