NiceProgressChecklist constructor

const NiceProgressChecklist({
  1. Key? key,
  2. required String title,
  3. String? description,
  4. required List<NiceChecklistItem> items,
  5. double? progress,
  6. Color? progressColor,
  7. EdgeInsets? padding,
})

Implementation

const NiceProgressChecklist({
  super.key,
  required this.title,
  this.description,
  required this.items,
  this.progress,
  this.progressColor,
  this.padding,
});