UserProfile constructor

UserProfile({
  1. required String id,
  2. String? email,
  3. String? phoneNumber,
  4. UserVerifiedIdentity? verifiedIdentity,
  5. required PartnerInfo partnerInfo,
})

Implementation

UserProfile({
  required this.id,
  this.email,
  this.phoneNumber,
  this.verifiedIdentity,
  required this.partnerInfo,
});