aggressive constant
Aggressive retry - more attempts, shorter delays.
Implementation
static const ErrorRecoveryConfig aggressive = ErrorRecoveryConfig(
maxRetries: 5,
retryDelay: Duration(seconds: 2),
retryBackoff: 1.5,
autoRestart: true,
);
Aggressive retry - more attempts, shorter delays.
static const ErrorRecoveryConfig aggressive = ErrorRecoveryConfig(
maxRetries: 5,
retryDelay: Duration(seconds: 2),
retryBackoff: 1.5,
autoRestart: true,
);