CreateInboxReplierOptions constructor

CreateInboxReplierOptions({
  1. required String inboxId,
  2. String? name,
  3. required CreateInboxReplierOptionsFieldEnum field,
  4. required String match,
  5. String? replyTo,
  6. String? subject,
  7. String? from,
  8. String? charset,
  9. bool? ignoreReplyTo,
  10. bool? isHTML,
  11. String? body,
  12. String? templateId,
  13. Map<String, Object>? templateVariables = const {},
})

Returns a new CreateInboxReplierOptions instance.

Implementation

CreateInboxReplierOptions({
  required this.inboxId,
  this.name,
  required this.field,
  required this.match,
  this.replyTo,
  this.subject,
  this.from,
  this.charset,
  this.ignoreReplyTo,
  this.isHTML,
  this.body,
  this.templateId,
  this.templateVariables = const {},
});