RetryGroup constructor

const RetryGroup({
  1. required int retries,
  2. void onRetry(
    1. BaseResponse
    )?,
  3. void onRetryError(
    1. Object,
    2. StackTrace
    )?,
})

Implementation

const factory RetryGroup({
  required final int retries,
  final void Function(BaseResponse)? onRetry,
  final void Function(Object, StackTrace)? onRetryError,
}) = _RetryGroup;