Price constructor

Price({
  1. double amount = 0.0,
  2. AppCurrency currency = AppCurrency.appCoin,
})

Implementation

Price({
  this.amount = 0.0,
  this.currency = AppCurrency.appCoin,
});