TaboolaClassicUnit constructor

TaboolaClassicUnit(
  1. String publisherId,
  2. String mode,
  3. String placement,
  4. String pageUrl,
  5. String pageType,
  6. String pageId,
  7. String targetType,
  8. bool isFeed,
  9. TaboolaClassicListener taboolaClassicListener,
  10. HashMap<String, dynamic> unrecognizedPageExtraPropertiesManager, {
  11. int? viewId,
  12. ScrollController? scrollController,
  13. bool? keepAlive,
})

Implementation

factory TaboolaClassicUnit(
  String publisherId,
  String mode,
  String placement,
  String pageUrl,
  String pageType,
  String pageId,
  String targetType,
  bool isFeed,
  TaboolaClassicListener taboolaClassicListener,
  HashMap<String, dynamic> unrecognizedPageExtraPropertiesManager, {
  int? viewId,
  ScrollController? scrollController,
  bool? keepAlive,
}) {
  return TaboolaClassicUnit._(
    publisherId,
    mode,
    placement,
    pageUrl,
    pageType,
    pageId,
    targetType,
    isFeed,
    taboolaClassicListener,
    unrecognizedPageExtraPropertiesManager,
    viewId: viewId,
    scrollController: scrollController,
    keepAlive: keepAlive,
  );
}