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