CheckSubscriptionData constructor

CheckSubscriptionData({
  1. dynamic subscriptionType,
  2. String? productId,
  3. String? expiryDate,
  4. String? purchasedDate,
  5. bool? isActive,
  6. bool? isCancelled,
})

Implementation

CheckSubscriptionData({
    dynamic subscriptionType,
    String? productId,
    String? expiryDate,
    String? purchasedDate,
    bool? isActive,
    bool? isCancelled,
}){
  _subscriptionType = subscriptionType;
  _productId = productId;
  _expiryDate = expiryDate;
  _purchasedDate = purchasedDate;
  _isActive = isActive;
  _isCancelled = isCancelled;
}