LocationData constructor

LocationData({
  1. required double latitude,
  2. required double longitude,
  3. double? accuracy,
  4. double? altitude,
  5. double? speed,
  6. double? bearing,
  7. String? provider,
})

Implementation

LocationData({
  required this.latitude,
  required this.longitude,
  this.accuracy,
  this.altitude,
  this.speed,
  this.bearing,
  this.provider,
});