ProgressProps constructor

const ProgressProps({
  1. double value = 0.0,
  2. ComponentSize size = ComponentSize.medium,
  3. ProgressVariant variant = ProgressVariant.primary,
  4. bool indeterminate = false,
  5. bool showValue = false,
  6. String? trackColor,
  7. String? indicatorColor,
})

Implementation

const ProgressProps({
  this.value = 0.0,
  this.size = ComponentSize.medium,
  this.variant = ProgressVariant.primary,
  this.indeterminate = false,
  this.showValue = false,
  this.trackColor,
  this.indicatorColor,
});