MessageV1 constructor

MessageV1({
  1. String? template,
  2. String? from,
  3. String? cc,
  4. String? bcc,
  5. String? reply_to,
  6. dynamic subject,
  7. dynamic text,
  8. dynamic html,
})

Implementation

MessageV1(
    {this.template,
    this.from,
    this.cc,
    this.bcc,
    this.reply_to,
    this.subject,
    this.text,
    this.html});