PolygonGeofenceEvent constructor

const PolygonGeofenceEvent({
  1. required PolygonGeofence geofence,
  2. required PolygonGeofenceEventType type,
  3. required DateTime timestamp,
  4. GeoPoint? triggerLocation,
})

Implementation

const PolygonGeofenceEvent({
  required this.geofence,
  required this.type,
  required this.timestamp,
  this.triggerLocation,
});