RequestPurchaseIosProps constructor
const
RequestPurchaseIosProps({
- bool? andDangerouslyFinishTransactionAutomatically,
- String? appAccountToken,
- int? quantity,
- required String sku,
- 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,
});