AurisStepIndicator constructor

const AurisStepIndicator({
  1. Key? key,
  2. required int step,
  3. required AurisStepState state,
  4. double size = 28,
})

Creates a step marker showing step (1-based) in the given state.

Implementation

const AurisStepIndicator({
  super.key,
  required this.step,
  required this.state,
  this.size = 28,
});