DownloadResponse<T> constructor

DownloadResponse<T>({
  1. required bool isSuccess,
  2. String? errorMessage,
  3. String? filePath,
  4. int? totalBytes,
  5. T? data,
})

Implementation

DownloadResponse({
  required this.isSuccess,
  this.errorMessage,
  this.filePath,
  this.totalBytes,
  this.data,
});