reduceTip method

int reduceTip(
  1. int tipAmount
)

Implementation

int reduceTip(int tipAmount) {
 return _tip -= tipAmount;
}