ScrollProgress constructor

const ScrollProgress({
  1. required double progress,
  2. bool top = true,
  3. double height = 3,
  4. String? color,
  5. Key? key,
})

Implementation

const ScrollProgress({
  required this.progress,
  this.top = true,
  this.height = 3,
  this.color,
  super.key,
});