ProgressHud constructor

const ProgressHud({
  1. Key? key,
  2. required Widget child,
  3. required bool inAsyncCall,
  4. double opacity = 0.3,
  5. Color color = Colors.grey,
  6. Animation<Color>? valueColor,
})

Implementation

const ProgressHud({
  super.key,
  required this.child,
  required this.inAsyncCall,
  this.opacity = 0.3,
  this.color = Colors.grey,
  this.valueColor,
});