Files
mywhatsapp/whatsapp_app/lib/config/app_config.dart
2026-05-18 15:45:07 +03:00

9 lines
283 B
Dart

class AppConfig {
static const String serverHost = "mywhatsapp.intaleqapp.com";
static const int serverPort = 3025;
static const String wsUrl = "wss://$serverHost";
static const int maxReconnectAttempts = 10;
static const Duration reconnectDelay = Duration(seconds: 3);
}