LiveLocation constructor

LiveLocation({
  1. Location? location,
  2. required int livePeriod,
  3. required int heading,
  4. required int proximityAlertRadius,
})

Implementation

LiveLocation({
  this.location,
  required this.livePeriod,
  required this.heading,
  required this.proximityAlertRadius,
});