MiniProgressBar constructor

const MiniProgressBar({
  1. Key? key,
  2. Duration duration = const Duration(seconds: 5),
  3. VoidCallback? onComplete,
  4. double height = 10.0,
  5. Color? color,
  6. Color? background,
})

Implementation

const MiniProgressBar({
  super.key,
  this.duration = const Duration(seconds: 5),
  this.onComplete,
  this.height = 10.0,
  this.color,
  this.background,
});