Email constructor

Email({
  1. int? id,
  2. String? email,
  3. int? emailType,
  4. int? companyId,
  5. int? emailDefault,
  6. int? deleted,
  7. int? createdBy,
  8. int? updatedBy,
  9. DateTime? createdAt,
  10. DateTime? updatedAt,
})

Implementation

Email({
  this.id,
  this.email,
  this.emailType,
  this.companyId,
  this.emailDefault,
  this.deleted,
  this.createdBy,
  this.updatedBy,
  this.createdAt,
  this.updatedAt,
});