AnalyticsUserProfileLocation constructor

AnalyticsUserProfileLocation({
  1. double? latitude,
  2. double? longitude,
  3. String? postalCode,
  4. String? city,
  5. String? region,
  6. String? country,
})

Implementation

AnalyticsUserProfileLocation({
  this.latitude,
  this.longitude,
  this.postalCode,
  this.city,
  this.region,
  this.country,
});