notifySkipAd method

Future<void> notifySkipAd([
  1. Map<String, String>? labels
])

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);
}