init method
Implementation
Future<void> init() async {
if (_initialized) return;
try {
await _tracker.cleanupAll();
await _tracker.startDetachedWatchdog();
_initialized = true;
} catch (_) {
// Ignore init errors
}
}
Future<void> init() async {
if (_initialized) return;
try {
await _tracker.cleanupAll();
await _tracker.startDetachedWatchdog();
_initialized = true;
} catch (_) {
// Ignore init errors
}
}