openNativeAd method

Future<void> openNativeAd(
  1. EmmaNativeAd nativeAd
)

Opens native ad CTA inapp or outapp. This method track native ad click automatically. It is not necessary call to sendInAppClick method. nativeAd The native ad

Implementation

Future<void> openNativeAd(EmmaNativeAd nativeAd) async {
  return await _channel.invokeMethod('openNativeAd', nativeAd.toMap());
}