getTransparent method

Bip32Base<Bip32Base> getTransparent()

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;
}