RequestPurchaseIosProps constructor

const RequestPurchaseIosProps({
  1. bool? andDangerouslyFinishTransactionAutomatically,
  2. String? appAccountToken,
  3. int? quantity,
  4. required String sku,
  5. DiscountOfferInputIOS? withOffer,
})

Implementation

const RequestPurchaseIosProps({
  /// Auto-finish transaction (dangerous)
  this.andDangerouslyFinishTransactionAutomatically,

  /// App account token for user tracking
  this.appAccountToken,

  /// Purchase quantity
  this.quantity,

  /// Product SKU
  required this.sku,

  /// Discount offer to apply
  this.withOffer,
});