User constructor

const User({
  1. required String cellphone,
  2. required String documentNumber,
  3. String? name,
  4. String? otherDocument,
  5. Gender? gender,
  6. MaritalStatus? maritalStatus,
  7. int? day,
  8. int? month,
  9. int? year,
  10. String? occupation,
  11. List<Phone>? phones,
  12. List<Email>? emails,
  13. List<Address>? addresses,
})

Implementation

const User({
  required this.cellphone,
  required this.documentNumber,
  this.name,
  this.otherDocument,
  this.gender,
  this.maritalStatus,
  this.day,
  this.month,
  this.year,
  this.occupation,
  this.phones,
  this.emails,
  this.addresses,
});