OptimusCompactStepBar constructor

const OptimusCompactStepBar({
  1. Key? key,
  2. required OptimusStepBarType type,
  3. required List<OptimusStepBarItem> items,
  4. required int currentItem,
  5. int? maxItem,
  6. bool rootOverlay = false,
})

Implementation

const OptimusCompactStepBar({
  super.key,
  required this.type,
  required this.items,
  required this.currentItem,
  this.maxItem,
  this.rootOverlay = false,
});