Geofence constructor

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

Specify a geofence.

Implementation

Geofence({
  required this.center,
  required this.radius,
  required this.dwell,
  this.name,
}) : super();