TodayProgressIndicator constructor

const TodayProgressIndicator({
  1. Key? key,
  2. required List<TodayProgressIndicatorItem> items,
  3. bool withDivider = true,
  4. Color bgColor = Colors.white,
})

Implementation

const TodayProgressIndicator({
  super.key,
  required this.items,
  this.withDivider = true,
  this.bgColor = Colors.white,
});