StepBarItem constructor

const StepBarItem({
  1. Key? key,
  2. required double maxWidth,
  3. required OptimusStepBarItem item,
  4. required OptimusStepBarItemState state,
  5. required OptimusStepBarType type,
  6. required String indicatorText,
})

Implementation

const StepBarItem({
  super.key,
  required this.maxWidth,
  required this.item,
  required this.state,
  required this.type,
  required this.indicatorText,
});