MessageTemplate constructor

MessageTemplate({
  1. String? id,
  2. String? environmentId,
  3. String? organizationId,
  4. String? creatorId,
  5. String? feedId,
  6. String? layoutId,
  7. String? parentId,
  8. String? subject,
  9. String? name,
  10. String? title,
  11. required StepType type,
  12. MessageTemplateContentType? contentType,
  13. required dynamic content,
  14. List<TemplateVariable>? variables,
  15. MessageTemplateCTA? cta,
  16. bool? active,
  17. String? preheader,
  18. String? senderName,
  19. Actor? actor,
  20. String? code,
  21. DateTime? createdAt,
  22. DateTime? updatedAt,
})

Implementation

MessageTemplate({
  this.id,
  this.environmentId,
  this.organizationId,
  this.creatorId,
  this.feedId,
  this.layoutId,
  this.parentId,
  this.subject,
  this.name,
  this.title,
  required this.type,
  this.contentType,
  required this.content,
  this.variables,
  this.cta,
  this.active,
  this.preheader,
  this.senderName,
  this.actor,
  this.code,
  this.createdAt,
  this.updatedAt,
});