LoadingOverlay constructor

const LoadingOverlay({
  1. Key? key,
  2. Color? color,
  3. double opacity = 0.5,
  4. Widget progressIndicator = const CircularProgressIndicator(),
  5. required bool isLoading,
  6. required Widget child,
})

Implementation

const LoadingOverlay({
  super.key,
  this.color,
  this.opacity = 0.5,
  this.progressIndicator = const CircularProgressIndicator(),
  required this.isLoading,
  required this.child,
});