VlessAuthentication.fromJson constructor
Implementation
factory VlessAuthentication.fromJson(Map<String, dynamic> json) {
return VlessAuthentication(
x25519: VlessAuthPair(
decryption: json['decryption'],
encryption: json['encryption'],
),
mlkem768: VlessAuthPair(
decryption: json['decryption_pq'],
encryption: json['encryption_pq'],
),
);
}