AntdProgressBar constructor

const AntdProgressBar({
  1. Key? key,
  2. AntdProgressBarStyle? style,
  3. AntdStyleBuilder<AntdProgressBarStyle, AntdProgressBar>? styleBuilder,
  4. Widget? child,
  5. AntdColor? color,
  6. double percent = 0.0,
  7. double stroke = 8.0,
  8. Duration duration = const Duration(milliseconds: 1000),
  9. void onChange(
    1. double percent
    )?,
  10. VoidCallback? onFinish,
})

Implementation

const AntdProgressBar(
    {super.key,
    super.style,
    super.styleBuilder,
    super.child,
    super.color,
    super.percent = 0.0,
    super.stroke = 8.0,
    super.duration = const Duration(milliseconds: 1000),
    super.onChange,
    super.onFinish});