PurchaseAndroid constructor

const PurchaseAndroid({
  1. bool? autoRenewingAndroid,
  2. String? dataAndroid,
  3. String? developerPayloadAndroid,
  4. required String id,
  5. List<String>? ids,
  6. bool? isAcknowledgedAndroid,
  7. required bool isAutoRenewing,
  8. String? obfuscatedAccountIdAndroid,
  9. String? obfuscatedProfileIdAndroid,
  10. String? packageNameAndroid,
  11. required IapPlatform platform,
  12. required String productId,
  13. required PurchaseState purchaseState,
  14. String? purchaseToken,
  15. required int quantity,
  16. String? signatureAndroid,
  17. required double transactionDate,
  18. String? transactionId,
})

Implementation

const PurchaseAndroid({
  this.autoRenewingAndroid,
  this.dataAndroid,
  this.developerPayloadAndroid,
  required this.id,
  this.ids,
  this.isAcknowledgedAndroid,
  required this.isAutoRenewing,
  this.obfuscatedAccountIdAndroid,
  this.obfuscatedProfileIdAndroid,
  this.packageNameAndroid,
  required this.platform,
  required this.productId,
  required this.purchaseState,
  this.purchaseToken,
  required this.quantity,
  this.signatureAndroid,
  required this.transactionDate,
  this.transactionId,
});