UDownloadButton constructor

const UDownloadButton({
  1. required UDownloadRequest request,
  2. Key? key,
  3. UDownloadManager? manager,
  4. double size = 44,
  5. void onCompleted(
    1. UDownloadTask task
    )?,
})

Implementation

const UDownloadButton({
  required this.request,
  super.key,
  this.manager,
  this.size = 44,
  this.onCompleted,
});