Geolocation constructor

const Geolocation({
  1. required double latitude,
  2. required double longitude,
})

Creates a new Geolocation with latitude and longitude

Implementation

const Geolocation({required this.latitude, required this.longitude});