privateKey property
Bip44PrivateKey
get
privateKey
Bip44PrivateKey privatekey
Implementation
Bip44PrivateKey get privateKey {
if (bip32.isPublicOnly) {
throw const Bip32KeyError("The Bip32 object is public-only");
}
return Bip44PrivateKey(bip32.privateKey, coinConf);
}