LinearProgressIndicator constructor

const LinearProgressIndicator({
  1. Key? key,
  2. double? value,
  3. Color? backgroundColor,
  4. Color? color,
  5. int? indicatorWidth,
})

Creates a LinearProgressIndicator with an optional value.

Implementation

const LinearProgressIndicator({
  super.key,
  this.value,
  this.backgroundColor,
  this.color,
  this.indicatorWidth,
});