OrderTotalPrice constructor

OrderTotalPrice({
  1. String? description,
  2. String? name,
  3. String? priceType,
  4. dynamic recurringChargePeriod,
  5. dynamic unitOfMeasure,
  6. Price? price,
})

Implementation

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