privateKey property

Bip32PrivateKey get privateKey

Gets the private key of this BIP-32 key.

Implementation

Bip32PrivateKey get privateKey {
  if (isPublicOnly) {
    throw const Bip32KeyError(
        'Public-only deterministic keys have no private half');
  }
  return _privKey!;
}