EmailMessageV1 constructor

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

Implementation

EmailMessageV1(
    {String? from,
    String? cc,
    String? bcc,
    String? to,
    String? reply_to,
    dynamic subject,
    dynamic text,
    dynamic html})
    : from = from,
      cc = cc,
      bcc = bcc,
      to = to,
      reply_to = reply_to,
      subject = subject,
      text = text,
      html = html;