aggressive constant

ErrorRecoveryConfig const aggressive

Aggressive retry - more attempts, shorter delays.

Implementation

static const ErrorRecoveryConfig aggressive = ErrorRecoveryConfig(
  maxRetries: 5,
  retryDelay: Duration(seconds: 2),
  retryBackoff: 1.5,
  autoRestart: true,
);