EmailTemplate constructor

EmailTemplate({
  1. String? body,
  2. String? format,
  3. String? from,
  4. String? fromDisplayName,
  5. String? replyTo,
  6. String? subject,
})

Implementation

EmailTemplate({
  this.body,
  this.format,
  this.from,
  this.fromDisplayName,
  this.replyTo,
  this.subject,
});