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