removeFeedAd static method

Future<void> removeFeedAd(
  1. String feedId
)

移除信息流广告

Implementation

static Future<void> removeFeedAd(String feedId) async {
  assert(isInit);

  await _methodChannel.invokeMethod("removeFeedAd", {"feedId": feedId});
}