retry method
Alias to asyncRetry.
Implementation
FutureOr<R?> retry(
{R? defaultValue,
bool throwOnRetryExhaustion = false,
int maxRetries = 3,
Duration? retryDelay,
Duration? Function(int retry)? computeDelay,
bool? Function(Object error, StackTrace stackTrace, int retries)?
onError}) =>
asyncRetry<R>(this,
defaultValue: defaultValue,
throwOnRetryExhaustion: throwOnRetryExhaustion,
maxRetries: maxRetries,
retryDelay: retryDelay,
computeDelay: computeDelay,
onError: onError);