AnalyticsUserProfile constructor

AnalyticsUserProfile({
  1. String? name,
  2. String? email,
  3. String? plan,
  4. AnalyticsUserProfileLocation? location,
  5. AnalyticsProperties? analyticsProperties,
})

Implementation

AnalyticsUserProfile({
  this.name,
  this.email,
  this.plan,
  this.location,
  AnalyticsProperties? analyticsProperties,
}) : properties = analyticsProperties;