OrderMoneyAmounts constructor

OrderMoneyAmounts({
  1. Money? totalMoney,
  2. Money? discountMoney,
  3. Money? serviceChargeMoney,
  4. Money? taxMoney,
  5. Money? tipMoney,
})

Implementation

OrderMoneyAmounts(
    {this.totalMoney,
    this.discountMoney,
    this.serviceChargeMoney,
    this.taxMoney,
    this.tipMoney});