InboxReplierDto constructor

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

Returns a new InboxReplierDto instance.

Implementation

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