CheckSubscriptionData.fromJson constructor
CheckSubscriptionData.fromJson(
- dynamic json
Implementation
CheckSubscriptionData.fromJson(dynamic json) {
_subscriptionType = json['subscriptionType'];
_productId = json['productId'];
_expiryDate = json['expiryDate'];
_purchasedDate = json['purchasedDate'];
_isActive = json['isActive'];
_isCancelled = json['isCancelled'];
}