LoadingOptions constructor

const LoadingOptions({
  1. AlignmentGeometry? alignment = Alignment.center,
  2. double gaussian = 0,
  3. bool? ignoring,
  4. bool? absorbing,
  5. GestureTapCallback? onModalTap,
  6. Color? backgroundColor,
  7. TextStyle? textStyle,
  8. Color? foregroundColor,
  9. BorderRadiusGeometry? borderRadius,
  10. bool? borderOnForeground,
  11. ShapeBorder? shape,
  12. double? elevation,
  13. Color? shadowColor,
  14. BoxConstraints? constraints,
  15. bool safeLTRB = true,
  16. bool resizeToAvoidBottomInset = true,
  17. Curve insetAnimationCurve = Curves.decelerate,
  18. Duration insetAnimationDuration = const Duration(milliseconds: 100),
  19. GestureTapCallback? onLoadingTap,
  20. LoadingBuilder? builder,
  21. ProgressIndicatorOptions? progressIndicator,
  22. EdgeInsetsGeometry? padding,
})

Implementation

const LoadingOptions({
  super.alignment = Alignment.center,
  super.gaussian,
  super.ignoring,
  super.absorbing,
  super.onModalTap,
  super.backgroundColor,
  super.textStyle,
  super.foregroundColor,
  super.borderRadius,
  super.borderOnForeground,
  super.shape,
  super.elevation,
  super.shadowColor,
  super.constraints,
  super.safeLTRB,
  super.resizeToAvoidBottomInset,
  super.insetAnimationCurve,
  super.insetAnimationDuration,
  this.onLoadingTap,
  this.builder,
  this.progressIndicator,
  this.padding,
});