TdSteps constructor

const TdSteps({
  1. Key? key,
  2. Axis layout = Axis.horizontal,
  3. EdgeInsets? contentPadding,
  4. TdStepStatus? status,
  5. int currentStep = 0,
  6. required List<TdStepItem> steps,
})

Implementation

const TdSteps({
  super.key,
  this.layout = Axis.horizontal,
  this.contentPadding,
  this.status,
  this.currentStep = 0,
  required this.steps,
});