OperationDepositPricing constructor

OperationDepositPricing({
  1. required Price nominal,
  2. PriceModifier? bonus,
  3. Price? withoutTax,
  4. PriceModifier? tax,
  5. Price? total,
})

Implementation

OperationDepositPricing({
  required this.nominal,
  this.bonus,
  this.withoutTax,
  this.tax,
  this.total,
});