hide message tracing

This commit is contained in:
Ben Allfree
2026-02-22 11:27:06 -08:00
parent b3ad54f296
commit bf4f52a4e3
37 changed files with 491 additions and 186 deletions
+4
View File
@@ -80,6 +80,10 @@ class AppSettingsService extends ChangeNotifier {
await updateSettings(_settings.copyWith(mapShowMarkers: value));
}
Future<void> setEnableMessageTracing(bool value) async {
await updateSettings(_settings.copyWith(enableMessageTracing: value));
}
Future<void> setMapCacheBounds(Map<String, double>? value) async {
await updateSettings(_settings.copyWith(mapCacheBounds: value));
}