freezer/lib/api/download_manager/download_service.dart

14 lines
349 B
Dart
Raw Normal View History

import 'package:freezer/api/download_manager/service_interface.dart';
class DownloadService {
static const NOTIFICATION_ID = 6969;
static const NOTIFICATION_CHANNEL_ID = "freezerdownloads";
final ServiceInterface service;
DownloadService(this.service);
void run() {
service.on('addDownloads').listen((event) {});
}
}