EdgeResponse constructor

EdgeResponse({
  1. required String continentCode,
  2. required String countryIsoCode,
  3. required int green,
  4. required String id,
  5. required String latencyTestUrl,
  6. required double latitude,
  7. required double longitude,
  8. required int red,
  9. required String subdivisionIsoCode,
  10. required int yellow,
})

Returns a new EdgeResponse instance.

Implementation

EdgeResponse({
  required this.continentCode,
  required this.countryIsoCode,
  required this.green,
  required this.id,
  required this.latencyTestUrl,
  required this.latitude,
  required this.longitude,
  required this.red,
  required this.subdivisionIsoCode,
  required this.yellow,
});