quickViewEventPixel static method

void quickViewEventPixel(
  1. String ref,
  2. String title,
  3. String prodId,
  4. String prodName,
  5. String sku,
)

Implementation

static void quickViewEventPixel(
    String ref,
    String title,
    String prodId,
    String prodName,
    String sku,
    ) {
  _checkInitialized();
  _PixelProcessor.processPixel(_PixelObject(
    type: PixelType.event,
    pType: PageType.productPage,
    group: GroupType.product,
    eType: 'quickview',
    ref: ref,
    title: title,
    prodId: prodId,
    prodName: prodName,
    prodSku: sku,
  ));
}