Files
mywhatsapp/whatsapp_app/lib/config/app_config.dart
2026-05-18 14:22:09 +03:00

9 lines
294 B
Dart

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