Price constructor

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

Implementation

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