VlessAuthentication.fromJson constructor

VlessAuthentication.fromJson(
  1. Map<String, dynamic> json
)

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'],
    ),
  );
}