DownloadUrlWidget constructor

const DownloadUrlWidget({
  1. Key? key,
  2. required Widget builder(
    1. BuildContext context,
    2. DownloadWidgetController controller,
    3. DownloadWidgetState state,
    4. double? progress,
    5. Object? error,
    6. DownloadRequest? request,
    ),
  3. required String url,
  4. String? path,
  5. DownloadWidgetController? controller,
  6. DownloadManager? manager,
})

Implementation

const DownloadUrlWidget(
    {super.key,
    required this.builder,
    required this.url,
    this.path,
    this.controller,
    this.manager})
    : super();