CallStatsLocation constructor

CallStatsLocation({
  1. int? accuracyRadiusMeters,
  2. String? city,
  3. String? continent,
  4. String? country,
  5. String? countryIsoCode,
  6. double? latitude,
  7. double? longitude,
  8. String? subdivision,
})

Returns a new CallStatsLocation instance.

Implementation

CallStatsLocation({
  this.accuracyRadiusMeters,
  this.city,
  this.continent,
  this.country,
  this.countryIsoCode,
  this.latitude,
  this.longitude,
  this.subdivision,
});