GeoLocation constructor

GeoLocation({
  1. double? latitude,
  2. double? longitude,
})

Implementation

GeoLocation({
  this.latitude,
  this.longitude,
});