ProgressHUD constructor

const ProgressHUD({
  1. Key? key,
  2. required Widget child,
  3. bool useBoxIndicator = true,
  4. String? label,
  5. Widget? indicatorWidget,
})

Implementation

const ProgressHUD({
  super.key,
  required this.child,
  this.useBoxIndicator = true,
  this.label,
  this.indicatorWidget,
});