ResPQ constructor

const ResPQ({
  1. required Int128 nonce,
  2. required Int128 serverNonce,
  3. required Uint8List pq,
  4. required List<int> serverPublicKeyFingerprints,
})

Res P Q constructor.

Implementation

const ResPQ({
  required this.nonce,
  required this.serverNonce,
  required this.pq,
  required this.serverPublicKeyFingerprints,
}) : super._();