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

9 lines
297 B
Dart

class AppConfig {
static const String serverHost = "mywhatsappapp.interlap.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);
}