IALocation constructor

IALocation({
  1. required double latitude,
  2. required double longitude,
  3. double accuracy = 0,
  4. double heading = 0,
  5. double altitude = 0,
  6. int floor = 0,
  7. double floorCertainty = 0,
  8. double velocity = 0,
  9. required DateTime timestamp,
})

Implementation

IALocation({
  required double latitude,
  required double longitude,
  this.accuracy = 0,
  this.heading = 0,
  this.altitude = 0,
  this.floor = 0,
  this.floorCertainty = 0,
  this.velocity = 0,
  required this.timestamp,
})  : pixel = null,
      floorplan = null,
      super(latitude, longitude);