removeFeedAd method

Future<int?> removeFeedAd(
  1. List<String> ids
)

Remove feed ad references ids feed id, see loadFeedAd return count of removed

Implementation

Future<int?> removeFeedAd(List<String> ids) async {
  return await _methodChannel.invokeMethod('removeFeedAd', ids);
}