DesktopSplashConfig constructor

DesktopSplashConfig({
  1. required int windowWidth,
  2. required int windowHeight,
  3. required String windowTitle,
  4. required String windowClass,
  5. required Color windowColor,
  6. required String imagePath,
  7. required int imageWidth,
  8. required int imageHeight,
  9. required double imageBorderRadius,
  10. required bool imageScaling,
  11. required Color backgroundColor,
  12. required int backgroundWidth,
  13. required int backgroundHeight,
  14. required double backgroundBorderRadius,
  15. required bool withAnimation,
  16. required double imageBlurRadius,
})

Implementation

DesktopSplashConfig({
  required this.windowWidth,
  required this.windowHeight,
  required this.windowTitle,
  required this.windowClass,
  required this.windowColor,
  required this.imagePath,
  required this.imageWidth,
  required this.imageHeight,
  required this.imageBorderRadius,
  required this.imageScaling,
  required this.backgroundColor,
  required this.backgroundWidth,
  required this.backgroundHeight,
  required this.backgroundBorderRadius,
  required this.withAnimation,
  required this.imageBlurRadius,
});