Price constructor

Price({
  1. String? amount,
  2. String? currency,
})

Implementation

Price({
  this.amount,
  this.currency,
});