ApphudSubscriptionWrapper constructor

ApphudSubscriptionWrapper({
  1. required String productId,
  2. required double expiresAt,
  3. required bool isInRetryBilling,
  4. required bool isAutorenewEnabled,
  5. required bool isIntroductoryActivated,
  6. required bool isActive,
  7. required ApphudSubscriptionStatus status,
  8. required double startedAt,
  9. double? canceledAt,
})

Implementation

ApphudSubscriptionWrapper({
  required this.productId,
  required this.expiresAt,
  required this.isInRetryBilling,
  required this.isAutorenewEnabled,
  required this.isIntroductoryActivated,
  required this.isActive,
  required this.status,
  required this.startedAt,
  this.canceledAt,
});