SplashAdLogo.file constructor

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

使用本地文件路径

Implementation

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