const
UserProfile({ - required String id,
- required String personalName,
- required String personalEmail,
- required String personalPhone,
- required String personalDni,
- required String engineerId,
- List<int>? personalPhotoBytes,
- required ProfessionalType professionalType,
- String? companyCif,
- String? companyName,
- String? companyAddress,
- String? companyEmail,
- String? companyPhone,
- 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,
});