GeofenceWorkflowEvent constructor

const GeofenceWorkflowEvent({
  1. required String workflowId,
  2. required GeofenceWorkflowStatus status,
  3. required GeofenceWorkflowState state,
  4. required DateTime timestamp,
  5. GeofenceWorkflowStep? step,
  6. String? message,
})

Implementation

const GeofenceWorkflowEvent({
  required this.workflowId,
  required this.status,
  required this.state,
  required this.timestamp,
  this.step,
  this.message,
});