LoadingPanel constructor

const LoadingPanel({
  1. Key? key,
  2. required bool isLoading,
  3. Widget? child,
  4. String? message,
  5. double? progress,
  6. RistoLoaderStyle loaderStyle = RistoLoaderStyle.adaptive,
  7. Color? barrierColor,
  8. Color? loaderColor,
  9. double blurSigma = 4.0,
  10. EdgeInsetsGeometry? padding,
  11. EdgeInsetsGeometry? margin,
  12. BorderRadius? barrierBorderRadius,
})

Implementation

const LoadingPanel({
  super.key,
  required this.isLoading,
  this.child,
  this.message,
  this.progress,
  this.loaderStyle = RistoLoaderStyle.adaptive,
  this.barrierColor,
  this.loaderColor,
  this.blurSigma = 4.0,
  this.padding,
  this.margin,
  this.barrierBorderRadius,
});