NiceProgressCell constructor

const NiceProgressCell({
  1. Key? key,
  2. required double progress,
  3. Color? color,
  4. Color? backgroundColor,
  5. bool showPercentage = true,
  6. double height = 8,
})

Implementation

const NiceProgressCell({
  super.key,
  required this.progress,
  this.color,
  this.backgroundColor,
  this.showPercentage = true,
  this.height = 8,
});