9 lines
283 B
Dart
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);
|
|
}
|