StepsModel constructor

const StepsModel({
  1. required String title,
  2. required String number,
  3. EdgeInsets? titleMargin,
  4. EdgeInsets? titlePadding,
  5. double? titleWidth,
  6. EdgeInsets padding = EdgeInsets.zero,
  7. BoxShape shape = BoxShape.circle,
  8. Color? textColor,
  9. Color? iconColor,
  10. 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,
});