GeoPointWithElevation constructor

const GeoPointWithElevation({
  1. required Latitude latitude,
  2. required Longitude longitude,
  3. Elevation elevation = const Elevation(0),
})

Implementation

const GeoPointWithElevation({
  required this.latitude,
  required this.longitude,
  this.elevation = const Elevation(0)
});