MatexProfitAndLossResult constructor

const MatexProfitAndLossResult({
  1. double returnOnInvestement = 0,
  2. double entryCostsAmount = 0,
  3. double exitCostsAmount = 0,
  4. double breakEvenUnits = 0,
  5. double grossSellPrice = 0,
  6. double grossBuyPrice = 0,
  7. double profitOrLoss = 0,
  8. double netSellPrice = 0,
  9. double netBuyPrice = 0,
  10. double totalCosts = 0,
  11. double taxAmount = 0,
})

Implementation

const MatexProfitAndLossResult({
  this.returnOnInvestement = 0,
  this.entryCostsAmount = 0,
  this.exitCostsAmount = 0,
  this.breakEvenUnits = 0,
  this.grossSellPrice = 0,
  this.grossBuyPrice = 0,
  this.profitOrLoss = 0,
  this.netSellPrice = 0,
  this.netBuyPrice = 0,
  this.totalCosts = 0,
  this.taxAmount = 0,
});