exceedRetryCount property Null safety

bool exceedRetryCount

Implementation

bool get exceedRetryCount {
  if (config.enabledInfinitelyRetry) return false;
  return _retryCount >= config.maximumRetryCount;
}