UserProfile constructor

const UserProfile({
  1. String? name,
  2. String? email,
  3. String? plan,
  4. UserProfileLocation? location,
  5. CustomProperties? customProperties,
})

Implementation

const UserProfile({
  this.name,
  this.email,
  this.plan,
  this.location,
  this.customProperties,
});