InboxReplierDto constructor
InboxReplierDto({
- required String id,
- required String inboxId,
- String? name,
- required InboxReplierDtoFieldEnum field,
- required String match,
- String? replyTo,
- String? subject,
- String? from,
- String? charset,
- required bool isHTML,
- String? templateId,
- Map<
String, Object> ? templateVariables = const {}, - required bool ignoreReplyTo,
- 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,
});