GeofenceWorkflow constructor

const GeofenceWorkflow({
  1. required String id,
  2. required List<GeofenceWorkflowStep> steps,
  3. bool requireSequence = true,
})

Implementation

const GeofenceWorkflow({
  required this.id,
  required this.steps,
  this.requireSequence = true,
});