EmailTemplateResponse constructor

EmailTemplateResponse({
  1. required String creationDate,
  2. required String lastModifiedDate,
  3. required String templateName,
  4. required TemplateType templateType,
  5. String? arn,
  6. String? defaultSubstitutions,
  7. String? htmlPart,
  8. String? recommenderId,
  9. String? subject,
  10. String? templateDescription,
  11. String? textPart,
  12. String? version,
  13. Map<String, String>? tags,
})

Implementation

EmailTemplateResponse({
  required this.creationDate,
  required this.lastModifiedDate,
  required this.templateName,
  required this.templateType,
  this.arn,
  this.defaultSubstitutions,
  this.htmlPart,
  this.recommenderId,
  this.subject,
  this.templateDescription,
  this.textPart,
  this.version,
  this.tags,
});