downloadServiceProvider top-level property

Provider<DownloadService> downloadServiceProvider
final

Provides the current DownloadService instance.

Implementation

final downloadServiceProvider = Provider<DownloadService>((ref) {
  final dio = Dio();

  return DioDownloadService(dio);
});