Location constructor

Location({
  1. double? altitude,
  2. double? latitude,
  3. double? longitude,
  4. double? speed,
  5. DateTime? timestamp,
  6. double? accuracy,
})

Implementation

Location({this.altitude, this.latitude, this.longitude, this.speed, this.timestamp, this.accuracy});