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