ProgressHUD constructor

ProgressHUD({
  1. required Key key,
  2. required Widget child,
  3. required bool inAsyncCall,
  4. double opacity = 0.3,
  5. Color color = Colors.grey,
})

Implementation

ProgressHUD({
  required Key key,
  required this.child,
  required this.inAsyncCall,
  this.opacity = 0.3,
  this.color = Colors.grey,
}) : super(key: key);