nativeLoadedCount method

Future<int> nativeLoadedCount(
  1. String adUnitId
)

获取已缓存广告数量

Implementation

Future<int> nativeLoadedCount(String adUnitId) async {
  return await TradplusSdk.channel
      .invokeMethod('native_getLoadedCount', {'adUnitID': adUnitId});
}