CheckSubscriptionData constructor
CheckSubscriptionData({})
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;
}