updateRetryConfig method
void
updateRetryConfig({})
Update retry configuration
Implementation
void updateRetryConfig({
bool? enableRetry,
int? retryCount,
Duration? retryDelay,
bool? exponentialBackoff,
}) {
if (enableRetry != null) _enableRetry = enableRetry;
if (retryCount != null) _retryCount = retryCount;
if (retryDelay != null) _retryDelay = retryDelay;
if (exponentialBackoff != null) _exponentialBackoff = exponentialBackoff;
}