LocationInfo constructor

LocationInfo({
  1. String? callbackTime,
  2. String? locationTime,
  3. int? locationType,
  4. double? latitude,
  5. double? longitude,
  6. double? accuracy,
  7. double? altitude,
  8. double? bearing,
  9. double? speed,
  10. String? country,
  11. String? province,
  12. String? city,
  13. String? district,
  14. String? street,
  15. String? streetNumber,
  16. String? cityCode,
  17. String? adCode,
  18. String? address,
  19. String? description,
})

Implementation

LocationInfo(
    {this.callbackTime,
      this.locationTime,
      this.locationType,
      this.latitude,
      this.longitude,
      this.accuracy,
      this.altitude,
      this.bearing,
      this.speed,
      this.country,
      this.province,
      this.city,
      this.district,
      this.street,
      this.streetNumber,
      this.cityCode,
      this.adCode,
      this.address,
      this.description});