ResendEmailBatchParams constructor

const ResendEmailBatchParams({
  1. required String from,
  2. required List<String> to,
  3. required String subject,
  4. List<String>? bcc,
  5. List<String>? cc,
  6. List<String>? replyTo,
  7. String? html,
  8. String? text,
  9. Json? headers,
})

Constructor of ResendEmailBatchParams

Implementation

const ResendEmailBatchParams({
  required this.from,
  required this.to,
  required this.subject,
  this.bcc,
  this.cc,
  this.replyTo,
  this.html,
  this.text,
  this.headers,
});