Price constructor

const Price({
  1. double price = 0,
  2. String? type,
  3. String? info,
  4. String? currency,
})

Implementation

const Price({
  this.price = 0,
  this.type,
  this.info,
  this.currency,
});