drawFeedAdView function

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

draw视频广告

Implementation

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