RoundedLinearProgress constructor

const RoundedLinearProgress({
  1. Key? key,
  2. double width = 70.0,
  3. double? strokeWidth,
  4. Color? bgColor,
  5. Color? fgColor,
  6. Duration duration = const Duration(seconds: 2),
})

Implementation

const RoundedLinearProgress(
    {Key? key,
    this.width = 70.0,
    this.strokeWidth,
    this.bgColor,
    this.fgColor,
    this.duration = const Duration(seconds: 2)})
    : super(key: key);