14 lines
349 B
Dart
14 lines
349 B
Dart
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) {});
|
|
}
|
|
}
|