AnimatedLinearProgressIndicator constructor

const AnimatedLinearProgressIndicator({
  1. Key? key,
  2. required double progress,
})

Implementation

const AnimatedLinearProgressIndicator({
  super.key,
  required this.progress,
});