splashAdView function

Widget splashAdView({
  1. bool? mIsExpress,
  2. required String androidCodeId,
  3. required String iosCodeId,
  4. bool? supportDeepLink,
  5. double? expressViewWidth,
  6. double? expressViewHeight,
  7. dynamic callBack,
})

开屏广告

Implementation

Widget splashAdView(
    {bool? mIsExpress,
    required String androidCodeId,
    required String iosCodeId,
    bool? supportDeepLink,
    double? expressViewWidth,
    double? expressViewHeight,
    callBack}) {
  return SplashAdView(
    mIsExpress: mIsExpress ?? false,
    androidCodeId: androidCodeId,
    iosCodeId: iosCodeId,
    supportDeepLink: supportDeepLink ?? true,
    expressViewWidth: expressViewWidth ?? 0.0,
    expressViewHeight: expressViewHeight ?? 0.0,
    callBack: callBack,
  );
}