OverlayAdaptiveProgressHub constructor

const OverlayAdaptiveProgressHub({
  1. Key? key,
  2. required bool inAsyncCall,
  3. double opacity = 0.3,
  4. Color color = Colors.grey,
  5. Widget progressIndicator = const CircularProgressIndicator.adaptive(),
  6. Offset? offset,
  7. bool dismissible = false,
  8. required Widget child,
  9. double blur = 0.0,
})

Implementation

const OverlayAdaptiveProgressHub(
    {super.key,
    required this.inAsyncCall,
    this.opacity = 0.3,
    this.color = Colors.grey,
    this.progressIndicator = const CircularProgressIndicator.adaptive(),
    this.offset,
    this.dismissible = false,
    required this.child,
    this.blur = 0.0});