totalCostTaxAndMarkdownsIncluded property

num get totalCostTaxAndMarkdownsIncluded

Implementation

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