Geofence constructor

const Geofence({
  1. required String id,
  2. required double latitude,
  3. required double longitude,
  4. required double radius,
  5. String? notifyOnEntry,
  6. String? notifyOnExit,
  7. String? notifyOnDwell,
  8. int loiteringDelay = 300000,
})

Implementation

const Geofence({
  required this.id,
  required this.latitude,
  required this.longitude,
  required this.radius,
  this.notifyOnEntry,
  this.notifyOnExit,
  this.notifyOnDwell,
  this.loiteringDelay = 300000,
});