toModel method

OperationDepositPricing toModel()

Constructs a new OperationDeposit from this OperationDepositPricingMixin.

Implementation

OperationDepositPricing toModel() => OperationDepositPricing(
  nominal: nominal.toModel(),
  bonus: bonus?.toModel(),
  withoutTax: withoutTax?.toModel(),
  tax: tax?.toModel(),
  total: total?.toModel(),
);