Amount constructor

Amount({
  1. Price? priceAmount,
  2. Price? taxAmount,
})

Implementation

Amount({
  this.priceAmount,
  this.taxAmount,
});