addPublisherLabels method
Adds a publisher specific labels. This labels will be only associated with the specified publisher. @param publisherId Publisher ID @param labels Labels to add
Implementation
Future<void> addPublisherLabels(String publisherId, Map<String, String> labels) {
var args = buildArguments();
args[Args.publisherId] = publisherId;
args[Args.labels] = labels;
return _methodChannel.invokeMethod('addPublisherLabels', args);
}