FDeterminateProgress constructor
const
FDeterminateProgress({
- required double value,
- FDeterminateProgressStyle style()?,
- String? semanticsLabel,
- Key? key,
Creates a determinate FDeterminateProgress.
Implementation
const FDeterminateProgress({required this.value, this.style, this.semanticsLabel, super.key})
: assert((0.0 <= value && value <= 1.0), 'value ($value) must be between 0.0 and 1.0');