setPublisherProvidedId method
- 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");
}
}