ModLoadingConfig constructor

ModLoadingConfig({
  1. String? imagePath,
  2. IconData? icon,
  3. bool animate = true,
  4. double size = 32,
  5. ModLoadingPosition position = ModLoadingPosition.center,
  6. Color? backgroundColor,
  7. double borderRadius = 8,
  8. EdgeInsets? padding,
  9. bool barrierDismissible = false,
  10. String? title,
  11. ModLoadingOrientation orientation = ModLoadingOrientation.vertical,
  12. double spacing = 20,
})

Implementation

ModLoadingConfig({
  this.imagePath,
  this.icon,
  this.animate = true,
  this.size = 32,
  this.position = ModLoadingPosition.center,
  this.backgroundColor,
  this.borderRadius = 8,
  this.padding,
  this.barrierDismissible = false,
  this.title,
  this.orientation = ModLoadingOrientation.vertical,
  this.spacing = 20,
});