TrackingPixelDto constructor

TrackingPixelDto({
  1. required String id,
  2. required bool seen,
  3. String? recipient,
  4. required String html,
  5. required String url,
  6. String? inboxId,
  7. String? sentEmailId,
  8. DateTime? seenAt,
  9. required DateTime createdAt,
})

Returns a new TrackingPixelDto instance.

Implementation

TrackingPixelDto({
  required this.id,
  required this.seen,
  this.recipient,
  required this.html,
  required this.url,
  this.inboxId,
  this.sentEmailId,
  this.seenAt,
  required this.createdAt,
});