getTransparent method
Returns the Transparent BIP32 component, or throws if missing.
Implementation
Bip32Base getTransparent() {
final transparent = this.transparent;
if (transparent == null) throw ZCashKeyError("Missing transaparent key.");
return transparent;
}