CustomerProfile constructor
CustomerProfile({
- String? firstName,
- String? lastName,
- required String displayName,
- required String fullName,
- required int feedbackRequiredCount,
- String? phoneNumber,
- bool? isPhoneConfirmed,
- String? ref,
- bool? hasCreditCard,
- String? gender,
- String? skypeAddress,
- int? rating,
- String? photo,
- List<
int> interests = const [], - bool? emailVerified,
- required String email,
Returns a new CustomerProfile instance.
Implementation
CustomerProfile({
this.firstName,
this.lastName,
required this.displayName,
required this.fullName,
required this.feedbackRequiredCount,
this.phoneNumber,
this.isPhoneConfirmed,
this.ref,
this.hasCreditCard,
this.gender,
this.skypeAddress,
this.rating,
this.photo,
this.interests = const [],
this.emailVerified,
required this.email,
});