ProgressBorder constructor

const ProgressBorder({
  1. BorderSide top = BorderSide.none,
  2. BorderSide right = BorderSide.none,
  3. BorderSide bottom = BorderSide.none,
  4. BorderSide left = BorderSide.none,
  5. double? progress,
  6. Color? backgroundColor,
  7. Border? backgroundBorder,
  8. Gradient? gradient,
  9. Gradient? backgroundGradient,
  10. bool clockwise = true,
})

Implementation

const ProgressBorder({
  this.top = BorderSide.none,
  this.right = BorderSide.none,
  this.bottom = BorderSide.none,
  this.left = BorderSide.none,
  this.progress,
  this.backgroundColor,
  this.backgroundBorder,
  this.gradient,
  this.backgroundGradient,
  this.clockwise = true,
});