FrequentLocation constructor

const FrequentLocation({
  1. required Coords center,
  2. required int visitCount,
  3. required Duration totalDuration,
  4. String? name,
})

Creates a frequent location.

Implementation

const FrequentLocation({
  required this.center,
  required this.visitCount,
  required this.totalDuration,
  this.name,
});