GeoCoordinates constructor

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

Creates a new instance of GeoCoordinates.

Implementation

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