ShadowsocksUserConfig constructor

const ShadowsocksUserConfig({
  1. @JsonKey.new(name: 'method') String? cipher,
  2. required String password,
  3. int? level,
  4. String? email,
  5. XrayAddress? address,
  6. int? port,
})

Implementation

const factory ShadowsocksUserConfig({
  @JsonKey(name: 'method') String? cipher,
  required String password,
  int? level,
  String? email,
  XrayAddress? address,
  int? port,
}) = _ShadowsocksUserConfig;