onReceivedHandle method

void onReceivedHandle(
  1. int adViewId,
  2. double width,
  3. double height
)

Implementation

void onReceivedHandle(int adViewId, double width, double height) {
  ADSuyiFlutterNativeAdView adView = ADSuyiFlutterNativeAdView(adViewId);
  adView.height = height;
  adView.width = width;
  if (this.onReceived != null) {
    this.onReceived!(adView);
  }
}