KiteProgress constructor

const KiteProgress({
  1. Key? key,
  2. double? value,
  3. String? label,
  4. bool showValue = false,
})

Implementation

const KiteProgress({
  super.key,
  this.value,
  this.label,
  this.showValue = false,
});