ChunkedHelperOptions constructor

ChunkedHelperOptions({
  1. int? maxRetries,
})

Implementation

ChunkedHelperOptions({int? maxRetries})
    : maxRetries = maxRetries ?? defaultMaxRetries {
  if (this.maxRetries < 1) {
    throw ArgumentError('`maxRetries` must be greater than 0');
  }
}