SteppedProgress constructor

const SteppedProgress({
  1. Key? key,
  2. required List<String> steps,
  3. required int currentStep,
  4. double thickness = 3.0,
  5. double dashWidth = 6.0,
  6. TextStyle textStyle = const TextStyle(fontSize: 13.0, color: Colors.black, fontWeight: FontWeight.bold),
  7. EdgeInsets padding = const EdgeInsets.only(left: 20.0, right: 20.0),
})

Implementation

const SteppedProgress({
	Key? key,
	required this.steps,
	required this.currentStep,
	this.thickness=3.0,
	this.dashWidth=6.0,
	this.textStyle=const TextStyle(
		fontSize: 13.0,
		color: Colors.black,
		fontWeight: FontWeight.bold
	),
	this.padding = const EdgeInsets.only(
		left: 20.0,
		right: 20.0
	)
}) : super(key: key);