PolygonGeofence constructor

const PolygonGeofence({
  1. required String identifier,
  2. required List<GeoPoint> vertices,
  3. bool notifyOnEntry = true,
  4. bool notifyOnExit = true,
  5. bool notifyOnDwell = false,
  6. int? loiteringDelay,
  7. JsonMap? extras,
})

Implementation

const PolygonGeofence({
  required this.identifier,
  required this.vertices,
  this.notifyOnEntry = true,
  this.notifyOnExit = true,
  this.notifyOnDwell = false,
  this.loiteringDelay,
  this.extras,
});