Location constructor
      const
      Location({})
     
    
Creates a location
Implementation
const Location({
  required this.latitude,
  required this.longitude,
  this.altitude,
  this.horizontalAccuracy,
  this.verticalAccuracy,
  this.course,
  this.speed,
  this.timestamp,
  this.floorLevel,
});