WiredProgress constructor

const WiredProgress({
  1. Key? key,
  2. required AnimationController controller,
  3. double value = 0.0,
})

Implementation

const WiredProgress({
  Key? key,
  required this.controller,
  this.value = 0.0,
}) : super(key: key);