CDGeoInfo constructor

CDGeoInfo({
  1. required double lat,
  2. required double lon,
  3. required String countryCode,
  4. required String region,
  5. required String city,
  6. required String zip,
  7. String streetAddress = '',
  8. String subThoroughFare = '',
  9. String haccuracy = "5",
})

Implementation

CDGeoInfo({
  required this.lat,
  required this.lon,
  required this.countryCode,
  required this.region,
  required this.city,
  required this.zip,
  this.streetAddress = '',
  this.subThoroughFare = '',
  this.haccuracy = "5",
});