BuildSweeped constructor

const BuildSweeped({
  1. double? width,
  2. double? height,
  3. Color? sweepedColor,
  4. Color? backroudCircleColor,
  5. double? borderRadius,
  6. double? sweepedPosition,
  7. bool? hideIcon = false,
  8. Key? key,
})

Implementation

const BuildSweeped(
    {
    /// Default Size Sweeped Width [width] .
    this.width,

    /// Default Size Sweeped Height [height] .
    this.height,

    /// Default Color Sweeped  [colorSweeped] .
    this.sweepedColor,

    /// Default Color Animation Progress circle [progressCircle] .
    this.backroudCircleColor,

    /// Default BorderRadius White Sweeeped [borderRadiusSweeped] .
    this.borderRadius,

    /// Animation Sweeped Value [colorSweeped] .
    this.sweepedPosition,

    /// Default Show And Hide Progress circle [visibility] .
    this.hideIcon = false,

// ----------------------------------------

    super.key});