EmailData constructor
EmailData({
- int? id,
- String? firstName,
- dynamic middleName,
- String? lastName,
- String? suffix,
- String? email,
- dynamic username,
- String? address1,
- String? address2,
- String? state,
- String? country,
- String? postalCode,
- String? phone,
- String? phoneType,
- String? locale,
- String? status,
- String? dateOfBirth,
- DateTime? createdAt,
- 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,
});