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