privateKey property
Implementation
@override
SaplingExtendedSpendingKey get privateKey {
final prvKey = _privateKey;
if (prvKey == null) {
throw const Zip32Error(
'Public-only deterministic keys have no private half',
);
}
return prvKey;
}