EmailData constructor

EmailData({
  1. int? id,
  2. String? firstName,
  3. dynamic middleName,
  4. String? lastName,
  5. String? suffix,
  6. String? email,
  7. dynamic username,
  8. String? address1,
  9. String? address2,
  10. String? state,
  11. String? country,
  12. String? postalCode,
  13. String? phone,
  14. String? phoneType,
  15. String? locale,
  16. String? status,
  17. String? dateOfBirth,
  18. DateTime? createdAt,
  19. DateTime? updatedAt,
})

Implementation

EmailData({
  this.id,
  this.firstName,
  this.middleName,
  this.lastName,
  this.suffix,
  this.email,
  this.username,
  this.address1,
  this.address2,
  this.state,
  this.country,
  this.postalCode,
  this.phone,
  this.phoneType,
  this.locale,
  this.status,
  this.dateOfBirth,
  this.createdAt,
  this.updatedAt,
});