ItemPrice constructor

ItemPrice({
  1. String? id,
  2. String? description,
  3. String? name,
  4. String? priceType,
  5. String? recurringChargePeriod,
  6. String? unitOfMeasure,
  7. String? billingAccount,
  8. Price? price,
})

Implementation

ItemPrice({
  this.id,
  this.description,
  this.name,
  this.priceType,
  this.recurringChargePeriod,
  this.unitOfMeasure,
  this.billingAccount,
  this.price,
});