GeofenceEvent constructor

const GeofenceEvent({
  1. required Geofence geofence,
  2. required GeofenceAction action,
  3. Location? location,
})

Implementation

const GeofenceEvent({
  required this.geofence,
  required this.action,
  this.location,
});