SubscriptionInfo constructor

const SubscriptionInfo(
  1. String productIdentifier,
  2. String purchaseDate,
  3. bool isSandbox,
  4. bool isActive,
  5. bool willRenew, {
  6. String? originalPurchaseDate,
  7. String? expiresDate,
  8. Store store = Store.unknownStore,
  9. String? unsubscribeDetectedAt,
  10. String? billingIssuesDetectedAt,
  11. String? gracePeriodExpiresDate,
  12. OwnershipType ownershipType = OwnershipType.unknown,
  13. PeriodType periodType = PeriodType.unknown,
  14. String? refundedAt,
  15. String? storeTransactionId,
  16. String? autoResumeDate,
  17. String? displayName,
  18. String? managementURL,
  19. String? productPlanIdentifier,
})

Implementation

const SubscriptionInfo(
  this.productIdentifier,
  this.purchaseDate,
  this.isSandbox,
  this.isActive,
  this.willRenew, {
  this.originalPurchaseDate,
  this.expiresDate,
  this.store = Store.unknownStore,
  this.unsubscribeDetectedAt,
  this.billingIssuesDetectedAt,
  this.gracePeriodExpiresDate,
  this.ownershipType = OwnershipType.unknown,
  this.periodType = PeriodType.unknown,
  this.refundedAt,
  this.storeTransactionId,
  this.autoResumeDate,
  this.displayName,
  this.managementURL,
  this.productPlanIdentifier,
});