LinearProgressIndicator constructor

LinearProgressIndicator({
  1. double? value,
  2. int width = 20,
  3. Color? color,
  4. Color? backgroundColor,
  5. Duration interval = const Duration(milliseconds: 90),
  6. int indeterminateChunkSize = 4,
  7. Key? key,
})

Implementation

LinearProgressIndicator({
  this.value,
  this.width = 20,
  this.color,
  this.backgroundColor,
  this.interval = const Duration(milliseconds: 90),
  this.indeterminateChunkSize = 4,
  super.key,
});