downloadServiceProvider top-level property
final
Provides the current DownloadService
instance.
Implementation
final downloadServiceProvider = Provider<DownloadService>((ref) {
final dio = Dio();
return DioDownloadService(dio);
});