freezer/lib/api/download_manager/download_service.dart
Pato05 950969b774
use dartfix, make more stuff constant +
add favorite button in notifications\nfix android tv\ntry to fix library tracks (unsuccessful)\nbetter MenuSheet
2023-10-13 00:09:37 +02:00

12 lines
289 B
Dart

import 'package:flutter_background_service/flutter_background_service.dart';
class DownloadService {
static const NOTIFICATION_ID = 6969;
static const NOTIFICATION_CHANNEL_ID = "freezerdownloads";
final ServiceInstance? service;
DownloadService(this.service);
void run() {}
}