clearFeedAd method
清除信息流广告列表
list
信息流广告 id 列表
Implementation
@override
Future<bool> clearFeedAd(List<int> list) async {
final bool result = await methodChannel.invokeMethod(
'clearFeedAd',
{
'list': list,
},
);
return result;
}