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