KeyPair constructor Null safety
Creates a new KeyPair from the given publicKey and privateKey
.
Implementation
KeyPair(this._mPublicKey, Uint8List? privateKey) {
_mPrivateKey = privateKey;
}
Creates a new KeyPair from the given publicKey and privateKey
.
KeyPair(this._mPublicKey, Uint8List? privateKey) {
_mPrivateKey = privateKey;
}