setPublisherProvidedId method

Future<void> setPublisherProvidedId(
  1. String publisherProvidedId
)

Allows to pass PublisherProvidedId to networks supporting it.

Implementation

Future<void> setPublisherProvidedId(String publisherProvidedId) async {
  try {
    return await AatkitFlutterPluginPlatform.instance
        .setPublisherProvidedId(publisherProvidedId);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}