loadFullScreenVideoAd method

Future loadFullScreenVideoAd({
  1. required String mCodeId,
  2. double? expressViewWidth,
  3. double? expressViewHeight,
  4. int orientation = ORIENTATION_VERTICAL,
})

Implementation

Future loadFullScreenVideoAd(
    {required String mCodeId,
    double? expressViewWidth,
    double? expressViewHeight,
    int orientation = ORIENTATION_VERTICAL}) async {
  return BytedancePangolinPlatform.instance.loadFullScreenVideoAd(
      mCodeId: mCodeId,
      expressViewWidth: expressViewWidth,
      expressViewHeight: expressViewHeight,
      orientation: orientation);
}