OfferingTransaction constructor

OfferingTransaction({
  1. MonetaryAmount? cost,
  2. DateTime? createdOn,
  3. String? offeringPromotionId,
  4. OfferingStatus? offeringStatus,
  5. String? transactionId,
})

Implementation

OfferingTransaction({
  this.cost,
  this.createdOn,
  this.offeringPromotionId,
  this.offeringStatus,
  this.transactionId,
});