FdcProgressBarStyle constructor

const FdcProgressBarStyle({
  1. double? height,
  2. BorderRadiusGeometry? borderRadius,
  3. Color? trackColor,
  4. Color? valueColor,
  5. Color? indeterminateValueColor,
  6. BoxBorder? backgroundBorder,
  7. Duration? animationDuration,
  8. bool? reserveSpaceWhenIdle,
  9. Duration? visibilityDelay,
  10. Duration? pollInterval,
  11. FdcProgressBarDisplayMode? displayMode,
})

Creates a FdcProgressBarStyle.

Implementation

const FdcProgressBarStyle({
  this.height,
  this.borderRadius,
  this.trackColor,
  this.valueColor,
  this.indeterminateValueColor,
  this.backgroundBorder,
  this.animationDuration,
  this.reserveSpaceWhenIdle,
  this.visibilityDelay,
  this.pollInterval,
  this.displayMode,
});