DownloadAsset constructor

DownloadAsset({
  1. required String assetId,
  2. String? title,
  3. required DownloadState state,
  4. required double progress,
  5. Map<String, String>? metadata,
})

Implementation

DownloadAsset({
  required this.assetId,
  this.title,
  required this.state,
  required this.progress,
  this.metadata,
});