destroy method

Future<bool?> destroy()

Implementation

Future<bool?> destroy() {
  _listenerSub?.cancel();
  return Ads.instance.channel.invokeMethod(
    'destroyNativeAdController',
    <String, dynamic>{
      'id': id,
    },
  );
}