totalAmount property

double get totalAmount

Total payment amount including tax, service and deliver charge. i.e tAmt = amt + txAmt + psc + tAmt

Implementation

double get totalAmount => amount + taxAmount + (serviceCharge ?? 0) + (deliveryCharge ?? 0);