shouldRetry method

bool shouldRetry(
  1. NetworkException error,
  2. int attempt
)

Implementation

bool shouldRetry(NetworkException error, int attempt) =>
    attempt < maxAttempts &&
    (error is ConnectionException || error is TimeoutException);