OverlayProgress constructor

const OverlayProgress({
  1. Key? key,
  2. Color progressColor = Colors.black,
  3. Color backgroundColor = Colors.white,
  4. double blurAmount = 15.0,
  5. int opacity = 130,
  6. required String headerText,
})

Implementation

const OverlayProgress({
  super.key,
  //TODO: need a way to set this in the consumer app
  this.progressColor = Colors.black,
  this.backgroundColor = Colors.white,
  this.blurAmount = 15.0,
  this.opacity = 130,
  required this.headerText,
});