GpsPathInfo constructor

GpsPathInfo({
  1. required int? time,
  2. required List<Location>? locationList,
  3. int? interval = 2,
})

Implementation

GpsPathInfo({
  required this.time,
  required this.locationList,
  this.interval = 2,
});