NiceDownloadLink constructor

const NiceDownloadLink({
  1. Key? key,
  2. required String filename,
  3. String? size,
  4. IconData? icon,
  5. VoidCallback? onDownload,
  6. NiceDownloadStatus status = NiceDownloadStatus.ready,
})

Implementation

const NiceDownloadLink({
  super.key,
  required this.filename,
  this.size,
  this.icon,
  this.onDownload,
  this.status = NiceDownloadStatus.ready,
});