hasCredit method
Implementation
bool hasCredit() {
if (PurchaseHelper.isPremium) return true;
if (credits <= 0) {
PurchaseHelper.showPaywall(analyticKey: creditKey);
return false;
}
return true;
}
bool hasCredit() {
if (PurchaseHelper.isPremium) return true;
if (credits <= 0) {
PurchaseHelper.showPaywall(analyticKey: creditKey);
return false;
}
return true;
}