MailTemplateDto constructor

MailTemplateDto({
  1. int? relation,
  2. String? mailTemplateId,
  3. String? mailTemplateName,
  4. bool? verification,
  5. String? fromEmail,
  6. String? fromName,
  7. String? toEmail,
  8. String? toName,
  9. String? subject,
  10. String? content,
})

Implementation

MailTemplateDto({
  this.relation,
  this.mailTemplateId,
  this.mailTemplateName,
  this.verification,
  this.fromEmail,
  this.fromName,
  this.toEmail,
  this.toName,
  this.subject,
  this.content,
});