contentPageViewPixel static method

void contentPageViewPixel(
  1. String ref,
  2. String title,
  3. List<CatalogItem> catalogs,
  4. String itemId,
  5. String itemName,
)

Implementation

static void contentPageViewPixel(
    String ref,
    String title,
    List<CatalogItem> catalogs,
    String itemId,
    String itemName,
    ) {
  _checkInitialized();
  _PixelProcessor.processPixel(_PixelObject(
    type: PixelType.pageView,
    pType: PageType.contentPage,
    ref: ref,
    title: title,
    catalogs: catalogs,
    itemId: itemId,
    itemName: itemName,
  ));
}