Server constructor

Server(
  1. int id,
  2. String name,
  3. String country,
  4. String sponsor,
  5. String host,
  6. String url,
  7. double latitude,
  8. double longitude,
  9. double distance,
  10. double latency,
  11. Coordinate geoCoordinate,
)

Implementation

Server(
  this.id,
  this.name,
  this.country,
  this.sponsor,
  this.host,
  this.url,
  this.latitude,
  this.longitude,
  this.distance,
  this.latency,
  this.geoCoordinate,
);