BaseProgressBar constructor

BaseProgressBar({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. required double value,
})

Implementation

BaseProgressBar(
    {Key? key,
    this.width,
    this.height,
    this.backgroundColor,
    this.foregroundColor,
    required this.value})
    : super(key: key);