NiceProgressChecklist constructor
const
NiceProgressChecklist({
- Key? key,
- required String title,
- String? description,
- required List<
NiceChecklistItem> items, - double? progress,
- Color? progressColor,
- EdgeInsets? padding,
Implementation
const NiceProgressChecklist({
super.key,
required this.title,
this.description,
required this.items,
this.progress,
this.progressColor,
this.padding,
});