nativeBannerAdClicked method

Future<bool> nativeBannerAdClicked(
  1. String responseId
)

When you show the ad and user presses the nativeAd's call to action button, you must call this function so the ad process goes correctly

Ad click is recognized using responseId you should store

Implementation

Future<bool> nativeBannerAdClicked(String responseId) async {
  if (!Platform.isAndroid) return false;

  return await _channel.invokeMethod(
      'TapsellPlus.nativeBannerAdClicked', {'response_id': responseId});
}