MobilitySamplingConfiguration constructor

MobilitySamplingConfiguration({
  1. bool usePriorContexts = true,
  2. double stopRadius = 25,
  3. double placeRadius = 50,
  4. Duration? stopDuration,
})

Implementation

MobilitySamplingConfiguration({
  this.usePriorContexts = true,
  this.stopRadius = 25,
  this.placeRadius = 50,
  Duration? stopDuration,
}) : super() {
  this.stopDuration = stopDuration ?? const Duration(seconds: 30);
}