ProgressHud constructor

ProgressHud({
  1. Key? key,
  2. required Widget child,
  3. double offsetY = -50,
  4. bool isGlobalHud = false,
  5. Duration? maximumDismissDuration,
})

Implementation

ProgressHud(
    {Key? key,
    required this.child,
    this.offsetY = -50,
    this.isGlobalHud = false,
    this.maximumDismissDuration})
    : super(key: key);