Template constructor

Template({
  1. required String templateName,
  2. String? htmlPart,
  3. String? subjectPart,
  4. String? textPart,
})

Implementation

Template({
  required this.templateName,
  this.htmlPart,
  this.subjectPart,
  this.textPart,
});