Zip32Sapling.fromExtendedFullViewKeyBytes constructor
Implementation
factory Zip32Sapling.fromExtendedFullViewKeyBytes(List<int> bytes) {
final fvk = SaplingExtendedFullViewKey.fromBytes(bytes);
return Zip32Sapling(privateKey: null, publicKey: fvk);
}