ShadowsocksServerConfig.single constructor
ShadowsocksServerConfig.single({
- required String cipher,
- required String password,
- int? level,
- String? email,
- XrayNetworkList? networkList,
Implementation
factory ShadowsocksServerConfig.single({
required String cipher,
required String password,
int? level,
String? email,
XrayNetworkList? networkList,
}) => ShadowsocksServerConfig(
cipher: cipher,
password: password,
level: level,
email: email,
networkList: networkList,
);