ElevationData constructor

const ElevationData({
  1. required List<ORSCoordinate> coordinates,
  2. required int timestamp,
  3. String attribution = 'service by https://openrouteservice.org | data by https://srtm.csi.cgiar.org',
  4. String type = 'point',
  5. String version = '0.2.1',
})

Implementation

const ElevationData({
  required this.coordinates,
  required this.timestamp,
  this.attribution =
      'service by https://openrouteservice.org | data by https://srtm.csi.cgiar.org',
  this.type = 'point',
  this.version = '0.2.1',
});