8 lines
239 B
Dart
8 lines
239 B
Dart
/// Represents a request to download an object from a storage bucket.
|
|
class DownloadRequest {
|
|
/// Local file path to save the downloaded object
|
|
final String destinationPath;
|
|
|
|
const DownloadRequest({required this.destinationPath});
|
|
}
|