Price constructor

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

Implementation

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