SGOfferPhase constructor

SGOfferPhase({
  1. required String identifier,
  2. required SGOfferType? offerType,
  3. SGBillinPeriodUnit? billingPeriodUnit,
  4. int? billingPeriodNumberOfUnit,
  5. double? discountedPrice,
  6. String? discountedLocalisedPrice,
  7. String? discountedLocalisedCurrencySymbol,
})

Implementation

SGOfferPhase({
  required this.identifier,
  required this.offerType,
  this.billingPeriodUnit,
  this.billingPeriodNumberOfUnit,
  this.discountedPrice,
  this.discountedLocalisedPrice,
  this.discountedLocalisedCurrencySymbol,
});