OfferingStatus constructor

OfferingStatus({
  1. DateTime? effectiveOn,
  2. Offering? offering,
  3. int? quantity,
  4. OfferingTransactionType? type,
})

Implementation

OfferingStatus({
  this.effectiveOn,
  this.offering,
  this.quantity,
  this.type,
});