CustomerProfile constructor

CustomerProfile({
  1. String? firstName,
  2. String? lastName,
  3. required String displayName,
  4. required String fullName,
  5. required int feedbackRequiredCount,
  6. String? phoneNumber,
  7. bool? isPhoneConfirmed,
  8. String? ref,
  9. bool? hasCreditCard,
  10. String? gender,
  11. String? skypeAddress,
  12. int? rating,
  13. String? photo,
  14. List<int> interests = const [],
  15. bool? emailVerified,
  16. 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,
});