12 lines
289 B
Dart
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() {}
|
||
|
}
|