totalFareWithoutTip property

double totalFareWithoutTip

The total fare in the local currency (see currencySymbol) without the tip. Includes intialFare, meteredFare but excludes tipAmount

Implementation

double get totalFareWithoutTip {
  return totalFare - tipAmount;
}