User constructor

User({
  1. CreditScoreData? creditScoreData,
  2. DateTime? dateOfBirth,
  3. required String email,
  4. required String familyName,
  5. required String givenName,
  6. String? label,
  7. String? landline,
  8. String? mobile,
  9. required bool optedInForMarketing,
  10. bool? optedInToThirdParties,
  11. Psr? psr,
  12. String? title,
})

Implementation

User({
  this.creditScoreData,
  this.dateOfBirth,
  required this.email,
  required this.familyName,
  required this.givenName,
  this.label,
  this.landline,
  this.mobile,
  required this.optedInForMarketing,
  this.optedInToThirdParties,
  this.psr,
  this.title,
});