shouldRetry method

bool shouldRetry(
  1. int retryCount
)

Implementation

bool shouldRetry(int retryCount) {
  return retryCount < maxRetries;
}