RequestPurchaseAndroidProps constructor

const RequestPurchaseAndroidProps({
  1. bool? isOfferPersonalized,
  2. String? obfuscatedAccountIdAndroid,
  3. String? obfuscatedProfileIdAndroid,
  4. required List<String> skus,
})

Implementation

const RequestPurchaseAndroidProps({
  /// Personalized offer flag
  this.isOfferPersonalized,

  /// Obfuscated account ID
  this.obfuscatedAccountIdAndroid,

  /// Obfuscated profile ID
  this.obfuscatedProfileIdAndroid,

  /// List of product SKUs
  required this.skus,
});