RelayAuthKeyPair constructor

RelayAuthKeyPair(
  1. Uint8List privateKeyBytes,
  2. Uint8List publicKeyBytes
)

Implementation

RelayAuthKeyPair(
  this.privateKeyBytes,
  this.publicKeyBytes,
)   : privateKey = hex.encode(privateKeyBytes),
      publicKey = hex.encode(publicKeyBytes);