SaplingIvk.fromBytes constructor
Implementation
factory SaplingIvk.fromBytes(List<int> bytes) {
return SaplingIvk(
JubJubNativeFr.fromBytes(
bytes.exc(
operation: "SaplingIvk",
name: "bytes",
reason: "Invalid ivk bytes length.",
length: 32,
),
),
);
}