trackBeginCheckout method

void trackBeginCheckout({
  1. double? value,
  2. String? currency,
  3. int? itemsCount,
})

Implementation

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