LoadingOptions constructor

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

Implementation

const LoadingOptions({
  this.onLoadingTap,
  this.builder,
  this.style,
  this.padding,
  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,
});