DeliveryStatusDto constructor
DeliveryStatusDto({
- required String id,
- required String userId,
- String? sentId,
- String? remoteMtaIp,
- String? inboxId,
- String? reportingMta,
- List<
String> recipients = const [], - String? smtpResponse,
- int? smtpStatusCode,
- int? processingTimeMillis,
- DateTime? received,
- String? subject,
- required DateTime createdAt,
- required DateTime updatedAt,
Returns a new DeliveryStatusDto instance.
Implementation
DeliveryStatusDto({
required this.id,
required this.userId,
this.sentId,
this.remoteMtaIp,
this.inboxId,
this.reportingMta,
this.recipients = const [],
this.smtpResponse,
this.smtpStatusCode,
this.processingTimeMillis,
this.received,
this.subject,
required this.createdAt,
required this.updatedAt,
});