VerifyReceiptResponse constructor

VerifyReceiptResponse({
  1. required int status,
  2. required String? environment,
  3. bool? isRetryable,
  4. Receipt? receipt,
  5. List<ReceiptInfo>? latestReceiptInfo,
  6. String? latestReceipt,
  7. List<PendingRenewalInfo>? pendingRenewalInfo,
})

Implementation

VerifyReceiptResponse(
    {required this.status,
    required this.environment,
    this.isRetryable,
    this.receipt,
    this.latestReceiptInfo,
    this.latestReceipt,
    this.pendingRenewalInfo});