UserProfile constructor
UserProfile({
- required String id,
- String? email,
- String? phoneNumber,
- UserVerifiedIdentity? verifiedIdentity,
- required PartnerInfo partnerInfo,
Implementation
UserProfile({
required this.id,
this.email,
this.phoneNumber,
this.verifiedIdentity,
required this.partnerInfo,
});