Files
flutterApp/lib/core/consts/tcp_consts.dart

7 lines
149 B
Dart

import '../env/env_config.dart';
class TCPConsts {
static String get TCP_IP => EnvConfig.tcpIp;
static int get TCP_PORT => EnvConfig.tcpPort;
}