ContactData constructor

ContactData({
  1. String? name,
  2. String? email,
  3. String? newEmail,
  4. String? phone,
  5. String? userId,
  6. String? company,
  7. ContactState? state,
  8. String? birthday,
  9. String? streetAddress,
  10. String? city,
  11. String? zipCode,
  12. String? province,
  13. String? country,
  14. DoubleOptIn? doubleOptIn,
  15. Map<String, String>? standardDetails,
  16. Map<String, int>? numberDetails,
  17. Map<String, int>? dateDetails,
})

Implementation

ContactData({
  this.name,
  this.email,
  this.newEmail,
  this.phone,
  this.userId,
  this.company,
  this.state,
  this.birthday,
  this.streetAddress,
  this.city,
  this.zipCode,
  this.province,
  this.country,
  this.doubleOptIn,
  this.standardDetails,
  this.numberDetails,
  this.dateDetails,
});