EmailLogDTO constructor

const EmailLogDTO({
  1. String? email,
  2. DateTime? eventTimestamp,
  3. EventInfoDTO? eventInfo,
})

Implementation

const EmailLogDTO({
  this.email,
  this.eventTimestamp,
  this.eventInfo,
});