freezer/lib/api/download_manager/download_service.dart

12 lines
294 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() {}
}