SplashAdLogo.bundle constructor

const SplashAdLogo.bundle(
  1. String bundlePath, {
  2. double? height,
  3. double? heightRatio,
  4. String? backgroundColor,
})

使用 iOS Bundle 资源路径

Implementation

const SplashAdLogo.bundle(
  String bundlePath, {
  double? height,
  double? heightRatio,
  String? backgroundColor,
}) : this._(
       SplashLogoSource.bundle,
       bundlePath,
       height: height,
       heightRatio: heightRatio,
       backgroundColor: backgroundColor,
     );