showAdWithoutView method
Implementation
Future<void> showAdWithoutView(AdWithoutView ad) {
VponLogger.d('instanceManager call showAdWithoutView');
assert(
adIdFor(ad) != null,
'$Ad has not been loaded or has already been disposed.',
);
return channel.invokeMethod<void>(
'showAdWithoutView',
<dynamic, dynamic>{
'adId': adIdFor(ad),
},
);
}