CLProgress constructor

const CLProgress({
  1. Key? key,
  2. required double value,
  3. CLProgressVariant variant = CLProgressVariant.primary,
  4. double height = 8.0,
})

Implementation

const CLProgress({
  super.key,
  required this.value,
  this.variant = CLProgressVariant.primary,
  this.height = 8.0,
});