KeyPair constructor

KeyPair(
  1. Uint8List _mPublicKey,
  2. Uint8List? privateKey
)

Creates a new KeyPair from the given publicKey and privateKey.

Implementation

KeyPair(this._mPublicKey, Uint8List? privateKey) {
  _mPrivateKey = privateKey;
}