clearFeedAd static method

Future<bool> clearFeedAd(
  1. List<int> list
)

清除信息流广告列表 list 信息流广告 id 列表

Implementation

static Future<bool> clearFeedAd(List<int> list) async {
  final bool result = await _methodChannel.invokeMethod(
    'clearFeedAd',
    {
      'list': list,
    },
  );
  return result;
}