StepsModel constructor
const
StepsModel({
- required String title,
- required String number,
- EdgeInsets? titleMargin,
- EdgeInsets? titlePadding,
- double? titleWidth,
- EdgeInsets padding = EdgeInsets.zero,
- BoxShape shape = BoxShape.circle,
- Color? textColor,
- Color? iconColor,
- IconData? completedIcon,
Implementation
const StepsModel({
required this.title,
required this.number,
this.titleMargin,
this.titlePadding,
this.titleWidth,
this.padding = EdgeInsets.zero,
this.shape = BoxShape.circle,
this.textColor,
this.iconColor,
this.completedIcon,
});