Offering constructor

Offering({
  1. String? description,
  2. String? id,
  3. DevicePlatform? platform,
  4. List<RecurringCharge>? recurringCharges,
  5. OfferingType? type,
})

Implementation

Offering({
  this.description,
  this.id,
  this.platform,
  this.recurringCharges,
  this.type,
});