setPublisherLabel method

Future<void> setPublisherLabel(
  1. String publisherId,
  2. String name,
  3. String value
)

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