StepperValue constructor

StepperValue({
  1. required Map<int, StepState> stepStates,
  2. required int currentStep,
})

Creates a StepperValue.

Parameters:

  • stepStates (Map<int, StepState>, required): step states by index
  • currentStep (int, required): currently active step index

Implementation

StepperValue({
  required this.stepStates,
  required this.currentStep,
});