ContactData constructor

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

Implementation

ContactData({
  this.name,
  this.email,
  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,
});