setPublisherUserId method

Future<void> setPublisherUserId(
  1. String publisherUserId
)

Sets the publisher user ID.

This method is used to set the publisher user ID for the Xandr platform interface. The publisher user ID is a unique identifier for the publisher's user.

Parameters:

  • publisherUserId: The publisher user ID to be set.

Example usage:

setPublisherUserId('123456789');

Implementation

Future<void> setPublisherUserId(String publisherUserId) {
  return _instance.setPublisherUserId(publisherUserId);
}