Price constructor

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

Implementation

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