setPublisherLabel method
Sets a publisher specific label. This labels will be only associated with the specified publisher. @param publisherId Publisher ID @param name Label name @param value Label value
Implementation
Future<void> setPublisherLabel(String publisherId, String name, String value) {
var args = buildArguments();
args[Args.publisherId] = publisherId;
args[Args.labelName] = name;
args[Args.labelValue] = value;
return _methodChannel.invokeMethod('setPublisherLabel', args);
}