HandshakeState constructor

const HandshakeState({
  1. required Uint8List chainKey,
  2. required Uint8List handshakeHash,
  3. required XXHandshakeState state,
  4. SecretKey? sendKey,
  5. SecretKey? recvKey,
  6. Uint8List? remoteEphemeralKey,
  7. Uint8List? remoteStaticKey,
})

Implementation

const HandshakeState({
  required this.chainKey,
  required this.handshakeHash,
  required this.state,
  this.sendKey,
  this.recvKey,
  this.remoteEphemeralKey,
  this.remoteStaticKey,
});