FDeterminateProgress constructor

const FDeterminateProgress({
  1. required double value,
  2. FDeterminateProgressStyle style(
    1. FDeterminateProgressStyle style
    )?,
  3. String? semanticsLabel,
  4. 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');