AMapLocation constructor

const AMapLocation({
  1. String provider = '',
  2. required LatLng latLng,
  3. double accuracy = 0,
  4. double altitude = 0,
  5. double bearing = 0,
  6. double speed = 0,
  7. num time = 0,
})

Implementation

const AMapLocation({
  this.provider = '',
  required this.latLng,
  this.accuracy = 0,
  this.altitude = 0,
  this.bearing = 0,
  this.speed = 0,
  this.time = 0,
});