LoadingOverlayPro constructor

const LoadingOverlayPro({
  1. Key? key,
  2. required bool isLoading,
  3. required Widget child,
  4. Color backgroundColor = Colors.black54,
  5. Widget progressIndicator = const LoadingBouncingLine.circle(),
  6. Widget? overLoading,
  7. Widget? bottomLoading,
})

Implementation

const LoadingOverlayPro({
  Key? key,
  required this.isLoading,
  required this.child,
  this.backgroundColor = Colors.black54,
  this.progressIndicator = const LoadingBouncingLine.circle(),
  this.overLoading,
  this.bottomLoading,
}) : super(key: key);