FDeterminateProgress constructor

const FDeterminateProgress({
  1. required double value,
  2. FDeterminateProgressStyleDelta style = const .context(),
  3. String? semanticsLabel,
  4. Key? key,
})

Creates a determinate FDeterminateProgress.

Implementation

const FDeterminateProgress({required this.value, this.style = const .context(), this.semanticsLabel, super.key})
  : assert((0.0 <= value && value <= 1.0), 'value ($value) must be between 0.0 and 1.0');