ProgressBar constructor

const ProgressBar({
  1. required double value,
  2. Color? color,
  3. Color? backgroundColor,
  4. Key? key,
})

Implementation

const ProgressBar({
  required this.value,
  this.color,
  this.backgroundColor,
  Key? key,
}) : super(key: key);