onAdMeasured method

dynamic onAdMeasured(
  1. OSETNativeAd osetAd,
  2. double width,
  3. double height
)

广告视图测量回调

Implementation

onAdMeasured(OSETNativeAd osetAd, double width, double height) {
  print('adset_plugin 广告试图测量高度回调 $height');
  if (osetAd.refreshAdHeight(height)) {
    _checkUpdateWidget(osetAd);
  }
}