addProductEvent method
- BasketItem item,
- String eventType
Adds a custom product event with a specific eventType.
Implementation
void addProductEvent(BasketItem item, String eventType) {
_productEvents.add(ProductEvent(eventType, item));
}
Adds a custom product event with a specific eventType.
void addProductEvent(BasketItem item, String eventType) {
_productEvents.add(ProductEvent(eventType, item));
}