FdcGridProgressBar constructor

const FdcGridProgressBar({
  1. String? id,
  2. bool visible = true,
  3. FdcGridItemPlacement placement = FdcGridItemPlacement.end,
  4. double? width,
  5. FdcProgressBarStyle style = const FdcProgressBarStyle(),
})

Creates a FdcGridProgressBar.

Implementation

const FdcGridProgressBar({
  super.id,
  super.visible,
  super.placement = FdcGridItemPlacement.end,
  this.width,
  this.style = const FdcProgressBarStyle(),
});