UploadProgress constructor

UploadProgress({
  1. required int sentBytes,
  2. required int totalBytes,
  3. bool isComplete = false,
  4. Response? response,
  5. Object? error,
})

Implementation

UploadProgress({
  required this.sentBytes,
  required this.totalBytes,
  this.isComplete = false,
  this.response,
  this.error,
});