EmailTemplate constructor

EmailTemplate({
  1. required String templateId,
  2. required String locale,
  3. required String message,
  4. required String senderName,
  5. required String senderEmail,
  6. required String replyToEmail,
  7. required String replyToName,
  8. required String subject,
})

Implementation

EmailTemplate({
  required this.templateId,
  required this.locale,
  required this.message,
  required this.senderName,
  required this.senderEmail,
  required this.replyToEmail,
  required this.replyToName,
  required this.subject,
});