shouldRetry property
bool
get
shouldRetry
Checks if it's time to retry the event
Implementation
bool get shouldRetry {
if (attemptCount >= RetryConfig.maxRetryAttempts) return false;
final nextRetryTime = lastAttempt.add(
Duration(seconds: _getRetryInterval()),
);
return DateTime.now().isAfter(nextRetryTime);
}