toJson method

String toJson()

Implementation

String toJson() => switch (this) {
  VmessSecurity.aes128Gcm => 'aes-128-gcm',
  VmessSecurity.chacha20Poly1305 => 'chacha20-poly1305',
  VmessSecurity.auto => 'auto',
  VmessSecurity.none => 'none',
  VmessSecurity.zero => 'zero',
};