onPlatformViewCreated method

void onPlatformViewCreated(
  1. int id
)

Implementation

void onPlatformViewCreated(int id) {
  _methodChannel = MethodChannel('${EB_NATIVE_VIEW_TYPE}_$id');
  _methodChannel?.setMethodCallHandler(handleMethodChannel);
  updateViews();
  _methodChannel?.invokeMethod("loadAd", createParams());
}