GeofenceSamplingConfiguration constructor

GeofenceSamplingConfiguration({
  1. required GeoPosition center,
  2. required double radius,
  3. required Duration dwell,
  4. String? label,
})

Implementation

GeofenceSamplingConfiguration({
  required this.center,
  required this.radius,
  required this.dwell,
  this.label,
}) : super();