TMultiDownloaderDialog constructor

const TMultiDownloaderDialog({
  1. Key? key,
  2. required TManager manager,
  3. required List<String> urls,
  4. void onError(
    1. String message
    )?,
  5. VoidCallback? onSuccess,
  6. Widget? title = const Text('Downloader'),
})

Implementation

const TMultiDownloaderDialog({
  super.key,
  required this.manager,
  required this.urls,
  this.onError,
  this.onSuccess,
  this.title = const Text('Downloader'),
});