NumberProgress constructor
const
NumberProgress({
- Key? key,
- double height = 10.0,
- double value = 0.0,
- Color? backgroundColor,
- Color? valueColor,
- Color textColor = Colors.white,
- double textSize = 8.0,
- EdgeInsetsGeometry padding = EdgeInsets.zero,
- AlignmentGeometry textAlignment = Alignment.center,
Implementation
const NumberProgress(
{Key? key,
this.height = 10.0,
this.value = 0.0,
this.backgroundColor,
this.valueColor,
this.textColor = Colors.white,
this.textSize = 8.0,
this.padding = EdgeInsets.zero,
this.textAlignment = Alignment.center})
: super(key: key);