isTemporaryServerError property

bool isTemporaryServerError

Определяет, является ли текущий результат временной ошибкой сервера.

Implementation

bool get isTemporaryServerError =>
    toError()?.isInternalError(InternalErrorCode.temporaryServerError) ??
    _temporaryServerStatuses.contains(toDioError()?.response?.statusCode);