UserProfile constructor

const UserProfile({
  1. required String id,
  2. required String personalName,
  3. required String personalEmail,
  4. required String personalPhone,
  5. required String personalDni,
  6. required String engineerId,
  7. List<int>? personalPhotoBytes,
  8. required ProfessionalType professionalType,
  9. String? companyCif,
  10. String? companyName,
  11. String? companyAddress,
  12. String? companyEmail,
  13. String? companyPhone,
  14. List<int>? companyLogoBytes,
})

Implementation

const UserProfile({
  required this.id,
  required this.personalName,
  required this.personalEmail,
  required this.personalPhone,
  required this.personalDni,
  required this.engineerId,
  this.personalPhotoBytes,
  required this.professionalType,
  this.companyCif,
  this.companyName,
  this.companyAddress,
  this.companyEmail,
  this.companyPhone,
  this.companyLogoBytes,
});