publicKey property

Bip32PublicKey get publicKey

Gets the corresponding public key derived from this private key.

Implementation

Bip32PublicKey get publicKey {
  return Bip32PublicKey(
    privKey.publicKey,
    keyData,
    keyNetVer,
  );
}