trackViewCart method
Implementation
void trackViewCart({int? itemsCount, double? value, String? currency}) =>
event('view_cart', properties: {
if (itemsCount != null) 'items_count': itemsCount,
if (value != null) 'value': value,
if (currency != null) 'currency': currency,
});