isRetryable property

bool get isRetryable

Implementation

bool get isRetryable => switch (code) {
  UDownloadErrorCode.network || UDownloadErrorCode.timeout || UDownloadErrorCode.serverError => true,
  UDownloadErrorCode.http => statusCode == 408 || statusCode == 429,
  _ => false,
};