7 lines
217 B
Dart
7 lines
217 B
Dart
import 'package:logger/logger.dart';
|
|
|
|
/// Initialisiert benötigte Services in Background-Isolates für PlatformDependent
|
|
Future<void> initBackground() async {
|
|
Logger().d('Init Background for PlatformDependent');
|
|
}
|