networkOnly static method
预定义配置:仅网络错误重试
Implementation
static RetryConfig networkOnly() {
return RetryConfig(
strategy: RetryStrategy.exponential,
maxAttempts: 3,
retryOnlyNetworkErrors: true,
);
}
预定义配置:仅网络错误重试
static RetryConfig networkOnly() {
return RetryConfig(
strategy: RetryStrategy.exponential,
maxAttempts: 3,
retryOnlyNetworkErrors: true,
);
}