FdcProgressBar constructor

const FdcProgressBar({
  1. Key? key,
  2. required FdcDataSet dataSet,
  3. double? width,
  4. FdcProgressBarStyle? style,
  5. String? semanticLabel,
})

Creates a FdcProgressBar.

Implementation

const FdcProgressBar({
  super.key,
  required this.dataSet,
  this.width,
  this.style,
  this.semanticLabel,
});