notifySkipAd method
Notifies of a new Skip Ad event. @param labels Labels
Implementation
Future<void> notifySkipAd([Map<String, String>? labels]) {
var args = buildArguments();
args[Args.labels] = labels;
return _methodChannel.invokeMethod<void>('notifySkipAd', args);
}