OrderTotalPrice constructor

OrderTotalPrice({
  1. String? id,
  2. String? description,
  3. String? name,
  4. String? priceType,
  5. Price? price,
})

Implementation

OrderTotalPrice({
  this.id,
  this.description,
  this.name,
  this.priceType,
  this.price,
});