FirstRunFlowEvent constructor

const FirstRunFlowEvent({
  1. required FirstRunFlowEventType type,
  2. required int stepIndex,
  3. required int totalSteps,
  4. required FirstRunStep step,
  5. required DateTime timestamp,
})

Creates a flow event.

Implementation

const FirstRunFlowEvent({
  required this.type,
  required this.stepIndex,
  required this.totalSteps,
  required this.step,
  required this.timestamp,
});