networkOnly static method

RetryConfig networkOnly()

预定义配置:仅网络错误重试

Implementation

static RetryConfig networkOnly() {
  return RetryConfig(
    strategy: RetryStrategy.exponential,
    maxAttempts: 3,
    retryOnlyNetworkErrors: true,
  );
}