10 lines
212 B
Dart
10 lines
212 B
Dart
class Constants {
|
|
static const int port = 9200;
|
|
static const String serviceName = "vsbs_room";
|
|
|
|
static int default_page = 1;
|
|
static int default_limit_max = 999999;
|
|
static int default_limit = 10;
|
|
|
|
}
|