ResumableUploadOptions class

Specifies options for resumable uploads.

Inheritance

Constructors

ResumableUploadOptions({int numberOfAttempts = 3, int chunkSize = 1024 * 1024, Duration? backoffFunction(int) = exponentialBackoff})

Properties

backoffFunction Duration? Function(int)
Function for determining the Duration to wait before making the next attempt. See exponentialBackoff for an example.
final
chunkSize int
Preferred size (in bytes) of a uploaded chunk. Must be a multiple of 256 KB.
final
hashCode int
The hash code for this object.
no setterinherited
numberOfAttempts int
Maximum number of upload attempts per chunk.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

exponentialBackoff(int failedAttempts) Duration?