EndpointLocation constructor

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

Implementation

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