GeoClueLocation constructor

const GeoClueLocation({
  1. required double accuracy,
  2. double? altitude,
  3. String? description,
  4. double? heading,
  5. required double latitude,
  6. required double longitude,
  7. double? speed,
  8. DateTime? timestamp,
})

Creates a new GeoClueLocation.

Implementation

const GeoClueLocation({
  required this.accuracy,
  this.altitude,
  this.description,
  this.heading,
  required this.latitude,
  required this.longitude,
  this.speed,
  this.timestamp,
});