Email constructor

Email({
  1. String? id,
  2. String? createdAt,
  3. String? sMTPHost,
  4. String? sMTPPort,
  5. String? sMTPSecure,
  6. String? sMTPTLS,
  7. String? sMTPEmail,
  8. String? sMTPPassword,
  9. bool? newCampaign,
  10. bool? newOrder,
  11. bool? changeOrderStatus,
})

Implementation

Email(
    {this.id,
    this.createdAt,
    this.sMTPHost,
    this.sMTPPort,
    this.sMTPSecure,
    this.sMTPTLS,
    this.sMTPEmail,
    this.sMTPPassword,
    this.newCampaign,
    this.newOrder,
    this.changeOrderStatus});