BounceProjection constructor

BounceProjection({
  1. String? id,
  2. required String sender,
  3. String? subject,
  4. required DateTime createdAt,
  5. String? bounceType,
  6. String? bounceMta,
})

Returns a new BounceProjection instance.

Implementation

BounceProjection({
  this.id,
  required this.sender,
  this.subject,
  required this.createdAt,
  this.bounceType,
  this.bounceMta,
});