loadAd method
加载广告的通用逻辑
Implementation
@protected
Future<void> loadAd(
String methodName, {
required AdseyeLoadListener listener,
}) {
loadListener = listener;
return _channel.invokeMethod(methodName, {
'ad_unit_id': adUnitId,
'request_id': requestId,
});
}