totalCostTaxAndPromoIncluded property

num get totalCostTaxAndPromoIncluded

Implementation

num get totalCostTaxAndPromoIncluded {
  assert(ticketType != TicketType.sell);
  assert(ticketType != TicketType.sellDeferred);
  return totalTaxAndPromoIncluded(
      totalCostItemsOnly, promo, discountAmount, taxe.percentage);
}