Location constructor
const
Location({
- required LocationCoordinates coordinates,
- required LocationFuzzyDouble? altitude,
- required LocationCourse? course,
- required LocationFuzzyDouble? groundSpeed,
- required Duration timestamp,
Implementation
const Location({
required this.coordinates,
required this.altitude,
required this.course,
required this.groundSpeed,
required this.timestamp
});