Coordinates constructor

const Coordinates(
  1. double latitude,
  2. double longitude, {
  3. double? elevation,
  4. double? heading,
})

Implementation

const Coordinates(
  this.latitude,
  this.longitude, {
  this.elevation,
  this.heading,
});