LinearProgressIndicator constructor

LinearProgressIndicator(
  1. {required double value,
  2. PdfColor? backgroundColor,
  3. PdfColor? valueColor,
  4. double? minHeight}
)

Creates a linear progress indicator.

Implementation

LinearProgressIndicator({
  required this.value,
  this.backgroundColor,
  this.valueColor,
  this.minHeight,
});