MailboxDeliveryEvent constructor

MailboxDeliveryEvent({
  1. required String id,
  2. required String deliveryId,
  3. required String provider,
  4. required String providerEventId,
  5. required String eventType,
  6. required String status,
  7. required DateTime occurredAt,
  8. required DateTime receivedAt,
  9. int? attemptNo,
  10. int? smtpCode,
  11. String? enhancedSmtpCode,
  12. String? reason,
  13. String? description,
  14. String? mxHost,
  15. bool? tls,
  16. bool? certificateVerified,
})

Implementation

MailboxDeliveryEvent({
  required this.id,
  required this.deliveryId,
  required this.provider,
  required this.providerEventId,
  required this.eventType,
  required this.status,
  required this.occurredAt,
  required this.receivedAt,
  this.attemptNo,
  this.smtpCode,
  this.enhancedSmtpCode,
  this.reason,
  this.description,
  this.mxHost,
  this.tls,
  this.certificateVerified,
});