Implement websocket

This commit is contained in:
2026-01-19 12:09:57 +01:00
parent 198aac5054
commit ac5bd1a211
6 changed files with 506 additions and 1 deletions

View File

@@ -199,4 +199,12 @@ class AuthenticationManager extends ChangeNotifier {
slot: slot,
);
}
Future<void> dropAutoStaticGroup(int dmrId) async {
if (_client == null) {
throw BrandmeisterError('Not authenticated');
}
await _client!.dropAutoStaticGroup(dmrId);
}
}