JubJubNativeFr.fromBytes64 constructor
Implementation
factory JubJubNativeFr.fromBytes64(List<int> bytes) {
return JubJubNativeFr(
BigintUtils.fromBytes(
bytes.exc(
length: 64,
operation: "fromBytes64",
reason: "Invalid Bytes length.",
),
byteOrder: Endian.little,
),
);
}