GeofenceWorkflowEngine constructor

GeofenceWorkflowEngine({
  1. required Stream<GeolocationEvent> events,
  2. WorkflowStateStore? stateStore,
})

Implementation

GeofenceWorkflowEngine({
  required Stream<GeolocationEvent<dynamic>> events,
  this.stateStore,
}) : _events = events;