shouldPromptRenewal property

bool get shouldPromptRenewal

Whether user should be prompted to renew.

Implementation

bool get shouldPromptRenewal {
  final status = subscriptionStatus;
  return status == SubscriptionStatus.expiringSoon ||
      status == SubscriptionStatus.gracePeriod ||
      status == SubscriptionStatus.expired;
}