MonetaryAmount constructor

MonetaryAmount({
  1. double? amount,
  2. CurrencyCode? currencyCode,
})

Implementation

MonetaryAmount({
  this.amount,
  this.currencyCode,
});