ContactData constructor
ContactData({
- String? name,
- String? email,
- String? phone,
- String? userId,
- String? company,
- ContactState? state,
- String? birthday,
- String? streetAddress,
- String? city,
- String? zipCode,
- String? province,
- String? country,
- DoubleOptIn? doubleOptIn,
- Map<
String, String> ? standardDetails, - Map<
String, int> ? numberDetails, - 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,
});