LocationUpdate constructor

const LocationUpdate({
  1. required double latitude,
  2. required double longitude,
  3. required int timestamp,
})

Implementation

const LocationUpdate({
  required this.latitude,
  required this.longitude,
  required this.timestamp,
});