totalPriceTaxAndPromoIncluded property
num
get
totalPriceTaxAndPromoIncluded
Implementation
num get totalPriceTaxAndPromoIncluded {
assert(ticketType != TicketType.spend);
assert(ticketType != TicketType.spendDeferred);
return totalTaxAndPromoIncluded(
totalPriceItemsOnly,
promo,
discountAmount,
taxe.percentage,
);
}