DeliveryStatusDto constructor

DeliveryStatusDto({
  1. required String id,
  2. required String userId,
  3. String? sentId,
  4. String? remoteMtaIp,
  5. String? inboxId,
  6. String? reportingMta,
  7. List<String> recipients = const [],
  8. String? smtpResponse,
  9. int? smtpStatusCode,
  10. int? processingTimeMillis,
  11. DateTime? received,
  12. String? subject,
  13. required DateTime createdAt,
  14. 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,
});