CDKProgressCircular constructor

const CDKProgressCircular({
  1. Key? key,
  2. double value = 0.0,
  3. bool isIndeterminate = false,
  4. bool isRunning = false,
})

Implementation

const CDKProgressCircular({
  Key? key,
  this.value = 0.0,
  this.isIndeterminate = false,
  this.isRunning = false,
}) : super(key: key);